OAuth
OAuth lets you create applications that can access Open Collective's API to read information and trigger changes on the platform.
OpenCollective implements the standard OAuth 2.0 Authorization Code Grant Flow. Additionally, we support PKCE for the Authorization Code Grant Flow, which is recommended to prevent theft of the authorization code by intermediaries, malicious scripts, or browser extensions.
Creating an OAuth app
Go to
https://opencollective.com/{account}/admin/for-developers
(replace{account}
by the slug of the account you want to use as the owner of the app)Click on
+ Create OAuth app
and fill in the required informationOn the success page, copy the client ID and secret for later use
Authorizing OAuth apps
Open Collective's OAuth implementation supports the standard authorization code grant type.
The web application flow to authorize users for your app is:
Users are redirected to request their Open Collective identity
Users are redirected back to your site by Open Collective with special code shared in the URL
You exchange the received code for an OAuth token
1. Request a user's Open Collective identity
Parameters
response_type
string
Required. Only supported value for now is code
redirect_uri
string
The URL in your application where users will be sent after authorization. If left out, Open Collective will redirect users to the callback URL configured in the OAuth Application settings. If provided, the redirect URL's host and port must exactly match the callback URL.
scope
string
A comma (legacy) or space separated list of scopes. If not provided, scope
defaults to an empty list. See scopes below.
state
string
Use it to pass some state back to your application after redirecting and to protect against cross-site request forgery attacks (CSRF) by including an unguessable random string.
code_challenge
string
The code challenge value when using PKCE.
code_challenge_method
string
The code challenge method when using PKCE. The only valid value is S256
.
2. Users are redirected back to your site
After users accept your request, they're redirected back to your site with a temporary code
passed as an URL query parameter as well as the state
you provided in the previous step. The temporary code will expire after 5 minutes. If the states don't match, then a third party created the request, and you should abort the process.
Otherwise, you can exchange the code
you received as a parameter for an access token:
Parameters
grant_type
string
Required. The only supported value for now is authorization_code
client_secret
string
Required. The client secret of you OAuth application (from Creating an OAuth App)
redirect_uri
string
Required. The URL in your application where users are sent after authorization.
code_verifier
string
The code verifier when using PKCE.
Response
If the request succeeds, you'll receive an HTTP 200 response code with a JSON payload like:
{
"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"token_type": "bearer",
"expires_in": 7776000
}
This access_token
is what you want to use to access the API. The expires_in
property is the number of seconds for which the access token is valid for, currently this is always 90 days from the creation of the access token.
3. Use the access token to access the API
The access token allows you to make requests to the API on a behalf of a user on our public GraphQL API.
Authorization: Bearer {ACCESS_TOKEN}
GET https://opencollective.com/oauth/token
For example, in curl you can set the Authorization header like this:
curl 'https://opencollective.com/api/graphql/v2' \
-H 'authorization: Bearer {ACCESS_TOKEN}' \
-H 'content-type: application/json' \
-d '{"query": "{ me { id name email } }"}'
Scopes for OAuth apps
Scopes let you specify exactly what type of access you need. Scopes limit access for OAuth tokens. They do not grant any additional permission beyond that which the user already has.
When setting up an OAuth App on Open Collective, requested scopes are displayed to the user on the authorization form.
Available scopes
email
: Access your email address.incognito
: Access your incognito account.account
: Manage your account, collectives and organizations.expenses
: Create and manage expenses, payout methods.orders
: Create and manage contributions, payment methods.transactions
: Refund and reject recorded transactions.virtualCards
: Create and manage virtual cards.updates
: Create and manage updates.conversations
: Create and manage conversations.webhooks
: Create and manage webhookshost
: Administrate fiscal host
Last updated
Was this helpful?