Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:oauth-io/oauthd into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
william26 committed Oct 28, 2014
2 parents a7911a5 + 0aea5a0 commit e1a37f3
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 0 deletions.
37 changes: 37 additions & 0 deletions providers/zendesk/conf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "Zendesk",
"desc": "Zendesk is a beautiful, lightweight help desk solution. Use Zendesk's API to easily manage your users, enhance your support team's productivity and create seamless integrations.",
"url": "https://{subdomain}.zendesk.com/oauth",
"oauth2": {
"authorize": {
"url": "/authorizations/new",
"query": {
"client_id": "{client_id}",
"response_type": "code",
"redirect_uri": "{{callback}}",
"state": "{{state}}",
"scope": "{scope}"
}
},
"access_token": {
"url": "/tokens",
"extra": ["scope"]
},
"refresh": "/tokens",
"parameters": {
"subdomain": "string",
"client_secret": "string",
"client_id": "string",
"scope": {
"values": {
"read": "Read access on data.",
"write": "Write access on data."
}
}
}
},
"href": {
"docs": "http://developer.zendesk.com",
"provider": "http://zendesk.com/"
}
}
Binary file added providers/zendesk/config.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added providers/zendesk/keys.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added providers/zendesk/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions providers/zendesk/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"settings": {
"install": {
"href": {
"provider": "http://zendesk.com/",
"docs": "http://developer.zendesk.com"
}
},
"sample": {
"method": "get",
"url": "/api/v2/users/me"
}
}
}

0 comments on commit e1a37f3

Please sign in to comment.