rebay icon indicating copy to clipboard operation
rebay copied to clipboard

Ruby client for the RESTful JSON ebay finding and shopping api

Results 9 rebay issues
Sort by recently updated
recently updated
newest added

Fixed default Global ID issue. Client can now set default_site_id equal to any of the Global ID values listed on https://developer.ebay.com/DevZone/merchandising/docs/CallRef/Enums/GlobalIdList.html. If a Global ID is not supplied, the application...

http endpoints on ebay api will be disabled end of march

When configuring Rebay::Api in an initializer in a Rails 4.2 app, the sandbox boolean is not inherited by Rebay::Finding or Rebay::Shopping. Workaround: Rebay::Api.configure do |rebay| rebay.app_id = "whatever" rebay.sandbox =...

--Added find completed items. Was in the eBay API but not in rebay. --Added find items by image. Was in the eBay API but not in rebay. --Added test coverage...

This change allows one to setup array params in methods such as `find_items_advanced`, which would enable using `itemFilter` as described [here](http://developer.ebay.com/DevZone/finding/CallRef/findItemsAdvanced.html). Here is a concrete example. I want to search...

It would be nice to have support for searching completed items under the findCompletedItems service (http://developer.ebay.com/DevZone/finding/CallRef/findCompletedItems.html). Example: ``` ruby def find_completed_items(params) raise ArgumentError unless params[:keywords] or params[:categoryId] response = get_json_response(build_request_url('findCompletedItems',...

I can see results info coming back from find_items_in_ebay_stores call but it doesn't handle pagination of the results. I can pass the pagination (page#) parameter but I get the same...