You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when displaying an oauth connector's spec, show an "authorize" button to initiate the oauth flow. We can identify that a connector is oauth-based if its spec has an auth property which has a property type: oauth2.0 e.g:
{
“connectorSpecification: {
“Client_id”: <string>,
“Client_secret”: <string>,
“Developer”_token”: <string>
“Start_date”: <datetime>,
“ad_Account_id”: <integer>,
},
“auth”: {
“type”: “oauth2.0”,
// this array points to the params in the connectorSpecification needed to kick off the oauth flow
// this would be a 2d array to handle nesting
“oauth_flow_init_parameters”: [[“client_id”], [“client_secret”], [“developer_token”]]
}
}
When this button is clicked, it should hit the endpoint implemented in #5639 which will return the URL to which a user should be redirected to grant oauth consent
The text was updated successfully, but these errors were encountered:
Tell us about the problem you're trying to solve
Mockup: https://www.figma.com/file/etaOkOsnXMoKwbfhCD71kw/Web-app?node-id=27283%3A94025
Describe the solution you’d like
when displaying an oauth connector's spec, show an "authorize" button to initiate the oauth flow. We can identify that a connector is oauth-based if its spec has an
auth
property which has a propertytype: oauth2.0
e.g:When this button is clicked, it should hit the endpoint implemented in #5639 which will return the URL to which a user should be redirected to grant oauth consent
The text was updated successfully, but these errors were encountered: