Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v3.0: Guzzle 6 Support and rewrite #50

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Generate new service files
With the new command that returns response models as well, now moved to
the root of the project for practicity.
  • Loading branch information
rdohms committed Oct 24, 2017
commit b0ba9b1629260763a196029b97d61a87c072a024
11 changes: 11 additions & 0 deletions description/meetup.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "Meetup API",
"description": "Collection of all Meetup API Service definitions",
"imports": [
"meetup_oauth.json",
"meetup_v1_services.json",
"meetup_v2_services.json",
"meetup_v3_services.json",
"meetup_vstream_services.json"
]
}
33 changes: 33 additions & 0 deletions description/meetup_oauth.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "Meetup",
"apiVersion": "*",
"description": "Oauth Methods for the Meetup.com API",
"operations": {
"GetRequestToken": {
"httpMethod": "GET",
"parameters": {
"oauth_callback": {
"location": "query",
"required": false
},
"oob": {
"location": "query",
"required": false
}
},
"summary": "Get a Oauth Request Token",
"uri": "/oauth/request"
},
"GetAccessToken": {
"httpMethod": "GET",
"parameters": {
"oauth_verifier": {
"location": "query",
"required": true
}
},
"summary": "Get a Oauth Request Token",
"uri": "/oauth/access"
}
}
}
Loading