Oauth Start
OAuth フローを開始し、同意画面へリダイレクト。
GET
/connectors/{provider}/oauth/startPath parameters
providerstringrequiredHeader parameters
authorizationstring | anyX-Api-Keystring | anyResponses
200Successful Response
any422Validation Error
detailValidationError[]Show propertiesHide properties
Array of
ValidationErrorlocstring | integer[]requiredShow propertiesHide properties
Array of
string | integerAny of:
string
stringinteger
integermsgstringrequiredtypestringrequiredRequest
curl -X GET "/connectors/string/oauth/start"const response = await fetch("/connectors/string/oauth/start", {
method: "GET"
});import requests
response = requests.get(
"/connectors/string/oauth/start",
)Response
"string"{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}