Hello! I'm having problems developing my Alexa smart home skill but first of all I would like to explain my case. I'm controlling one smart house with her own server and I would like have the control using Alexa. I developed one Alexa skill and in my lamba function communicate with my home server and working fine but there's a big problem... because I don't want to invoke my skill every time when I want to do an action like "Alexa, open my_skill_name" and after that "Alexa, turn on the kitchen light". Checking this problem I think that I can use Alexa smart home skill to invoke directly and for example 1) say "Alexa, turn on kitchen light"
2) Go to lambda function
3) In my lambda function connect with my home server.
Is that the best option to do that?
Developing my smart home skill I have a problem in the section "account linking" for that I go to "App & Service", "security profiles", and I don't know what I need to write in "Consent Privacy Notice URL" After that, In "account linking" I have that:
Authorization URI * . https://www.amazon.com/ap/oa Access
Token URI * . https://api.amazon.com/auth/o2/token
Client ID * . (my_client_id)
Client Secret * . (my_client_secret)
Client Authentication Scheme * . HTTP BASIC (Recommended)
Scope * . profile
Domain List . (I don't have nothing)
Redirect URLs (I don't have nothing)
When I go to my skill and I try to login in I have this error: "Error Summary 400 Bad Request The redirect URI you provided has not been whitelisted for your application. Please add your redirect URI in the 'Allowed Return URLs' section under 'Web Settings' for your Security Profile on Amazon Developer Portal." Somebody know how can I to fix the problem?
Thanks in advance!!
Regards!