OAuth1
Here are all details about configuring Connectors to authenticate with OAuth1
Introduction
Header
{
"token_in_header": true,
"content_type": "application/json",
"header_key": "Authorization",
"token_format": "{{token}}",
"token_prefix": "{{token_format}}"
}Authentication Configuration
{
"oauth1": {
"auth_form": [],
"config": {
"client_id": "CLIENT_ID for OAuth1 app",
"client_secret": "CLIENT_SECRET for OAuth1 app",
"extra_access_url": {},
"extra_authorization_url": {
"scope": "read,write",
"expiration": "never",
"name": "Locoia"
},
"authorization_base_url": "https://trello.com/1/OAuthAuthorizeToken",
"access_token_url": "https://trello.com/1/OAuthGetAccessToken",
"request_token_url": "https://trello.com/1/OAuthGetRequestToken"
}
}
}Last updated
Was this helpful?