All URIs are relative to https://api.flipdish.co
Method | HTTP request | Description |
---|---|---|
getAuthorizationTokens | GET /api/v1.0/{appId}/authorizationtokens/{oauthAppId} | |
revokeToken | DELETE /api/v1.0/{appId}/authorizationtokens/{key} |
RestApiPaginationResultOAuthTokenModel getAuthorizationTokens(oauthAppId, appId, opts)
import Flipdish from '@flipdish/api-client-javascript';
let defaultClient = Flipdish.ApiClient.instance;
// Configure OAuth2 access token for authorization: oauth2
let oauth2 = defaultClient.authentications['oauth2'];
oauth2.accessToken = 'YOUR ACCESS TOKEN';
let apiInstance = new Flipdish.AuthorizationTokensApi();
let oauthAppId = "oauthAppId_example"; // String |
let appId = "appId_example"; // String |
let opts = {
'page': 56, // Number |
'limit': 56 // Number |
};
apiInstance.getAuthorizationTokens(oauthAppId, appId, opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
oauthAppId | String | ||
appId | String | ||
page | Number | [optional] | |
limit | Number | [optional] |
RestApiPaginationResultOAuthTokenModel
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml, Data, Message, ErrorCode, StackTrace
revokeToken(key, appId)
import Flipdish from '@flipdish/api-client-javascript';
let defaultClient = Flipdish.ApiClient.instance;
// Configure OAuth2 access token for authorization: oauth2
let oauth2 = defaultClient.authentications['oauth2'];
oauth2.accessToken = 'YOUR ACCESS TOKEN';
let apiInstance = new Flipdish.AuthorizationTokensApi();
let key = "key_example"; // String |
let appId = "appId_example"; // String |
apiInstance.revokeToken(key, appId, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
});
Name | Type | Description | Notes |
---|---|---|---|
key | String | ||
appId | String |
null (empty response body)
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml, Message, ErrorCode, StackTrace