eBay List Auctions

Component ID

1223630

Component name

eBay List Auctions

Component type

module

Maintenance status

Development status

Component security advisory coverage

not-covered

Component created

Component changed

Component body

Looking to incorporate your eBay auctions listings into your drupal website? This module has one simple goal, to allow a simple way to list all of a user's eBay items up for auction in real time directly from the eBay API connection.

We have received a number of requests for this eBay integration module, so we thought we would share this simple module that requires very little configuration.

Installation:

  1. Download and install the Module Below
  2. Configure the module details within ebaylistauctions.module.
    1. Change $sellerID='[id of seller]' to use the desired eBay user id.
    2. Change $appID = '[developer app id]' to your registered developer api ID with eBay. If you do not yet have an app ID, you can register for one at: http://developer.ebay.com/devzone/shopping/docs/concepts/shoppingapiguide.html
  3. Once the changes to your configuration have been saved, create a new basic page with the name in which you would like users to locate the auctions. (You can also simply incorporate the list on a previously create page.) Make sure your page is set to use "PHP code" input format. In the content of the page, enter:
    <?php
    print getSellerItem();
    ?>

That should be all the configuration necessary. Load up your new page within a web browser to test this out.

Our goal is to update this app in the future so that configuration and incorporation are all going to be done at the installation level without the need to open up the module itself in an editor. If this module becomes helpful, let us know so we can up the priority in development.