You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

ebay_ruby

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ebay_ruby

0.0.2
bundlerRubygems
Version published
Maintainers
1
Created
Source

EbayRuby

Ebay access finding API with getting all items.

Installation

Add this line to your application's Gemfile:

gem 'ebay_ruby'

And then execute:

$ bundle

Or install it yourself as:

$ gem install ebay_ruby

Usage

Find your App Id on ebay Account

$ require 'ebay_ruby'
$ c=EbayConnect.new("YOURAPPID")

Send two arguments keyword, number of entry per page

$ items = c.find_items_by_keywords("Harry Potter", 3)
$ items = c.find_items_by_category("CATEGORY_ID", 3)
$ item  = c.find_items_by_product("ISBN/UPC/EAN", 3)

$ items.first.title
$ items.first.galleyImage
...

So on

Contributing

  • Fork it ( https://github.com/[my-github-username]/ebay_ruby/fork )
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create a new Pull Request

FAQs

Package last updated on 10 Jun 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts