Hello,
As of now we are using OAuth (Authorization code flow) in our system by creating the app following way
{
"appName": "test-smartthings-webhook2",
"appType": "API_ONLY",
"classifications": [
"CONNECTED_SERVICE"
],
"displayName": "test_name",
"description": "web api testing",
"singleInstance": false,
"apiOnly": {
"targetUrl":"URI"
},
"oauth": {
"clientName": "oauth client",
"scope": [
"r:locations:*",
"r:devices:*",
"x:devices:*"
],
"redirectUris": ["URI"]
}
}
Now we want to try OAuth (Implicit flow) in which it skips the authorization code step and directly returns the access token. Since we do not have any server to receive the auth code.
Does smartthing have or support OAuth Implicit Flow?
Also does smartthing support any other OAuth provider such as Google, Microsoft?