Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

stack_overflow

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stack_overflow

  • 0.0.9
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= Stack Overflow

Ive namespaced this gem to API::StackOverflow so that I could use 'StackOverflow' for other namespacing purposes

This is a simple gem that utilizes HTTParty and the StackOverflow API.

gem install stack_overflow

The StackOverflow API help can be found at http://api.stackoverflow.com/1.1/usage

== Set API Key

Be sure to set the API Key.

API::StackOverflow.API_KEY = YOUR_KEY_GOES_HERE

You can get your key from StackOverflow by going here : http://stackapps.com/apps/register

== Get all Users

API documentation can be found at http://api.stackoverflow.com/1.1/usage/methods/users

API::StackOverflow.get_all_users

By default the api returns the first page of users with 30 per page. This information can be read from the results. To get additional pages or change the pagesize (0-100) you can make call like:

API::StackOverflow.get_all_users(:page => 2, :per_page => 50)

== Get User(s)

API documentation can be found at http://api.stackoverflow.com/1.1/usage/methods/users-by-ids

API::StackOverflow.get_user(#user_id)

You can also get a group of users by using

API::StackOverflow.get_users([#user_id1, #user_id2, etc])

== Get User's Tags

API documentation can be found at http://api.stackoverflow.com/1.1/usage/methods/user-tags

API::StackOverflow.get_user_tags(#user_id)

== Get User's Questions

API documentation can be found at http://api.stackoverflow.com/1.1/usage/methods/questions

API::StackOverflow.get_user_questions(#user_id)

== Get User's Answers

API documentation can be found at http://api.stackoverflow.com/1.1/usage/methods/answers

API::StackOverflow.get_user_answers(#user_id)

== Get Tags

API documentation can be found at http://api.stackoverflow.com/1.1/usage/methods/tags

API::StackOverflow.get_tags

== Get Tags Synonyms

API documentation can be found at http://api.stackoverflow.com/1.1/usage/methods/tag-synonyms

API::StackOverflow.get_tags_synonyms

== Work in progress

This is a work in progress as I use the API for my application.

FAQs

Package last updated on 15 Jan 2012

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc