1

我在哪里可以找到 Amazon Alexa 中帐户链接的示例 Python 代码。我只能在这里获得文档。

https://developer.amazon.com/docs/account-linking/understand-account-linking.html

请帮我 !!

4

3 回答 3

2

帐户链接对所有语言的工作方式都相同,您应该熟悉OAuth2在开发人员门户中配置帐户链接。

用户可以通过两种方式关联账户:

  1. 从 Alexa 应用程序中的技能详细信息卡中,同时启用该技能。
  2. 在发出需要身份验证的请求后,从 Alexa 应用程序中的链接帐户卡。

当您将帐户与您的技能相关联时,该技能的每个后续请求都将包含一个访问令牌。然后,您可以使用它accessToken来获取关联帐户的关联数据。

"session": {
        "new": true,
        "sessionId": "amzn1.echo-api.session.xxxxxxxxxxx",
        "application": {
            "applicationId": "amzn1.ask.skill.xxxxxxxxxx"
        },
        "user": {
            "userId": "amzn1.ask.account.xxxxxxx",
            "accessToken": "xxxxxxxxxxxxxx"

对于经过身份验证的用例,请始终检查 是否accessToken可用,以及当accessToken请求中没有表示用户未通过身份验证时,您可以向用户发送Account Link Card. 除了发送代码之外,链接帐户过程Account Link card中不涉及任何编码。

发送账户链接卡

在您的响应 JSON 中包含LinkAccount卡片

...
            "outputSpeech": {
                "type": "SSML",
                "ssml": "<speak> Please link your account </speak>"
            },
            "card": {
                "type": "LinkAccount"
            }
...
于 2018-07-16T11:34:51.137 回答
0

在 Python 中发送 Account Link 卡片……</p>

from ask_sdk_model.ui import Card

…

handler_input.response_builder.set_card(Card('LinkAccount'))
于 2020-05-08T12:39:20.917 回答
0

我们可以使用get_account_linking_access_token()ASK SDK for python 中的函数来获取用于帐户链接的用户令牌并存储在变量中account_linking_token。如果帐户链接已完成,则使用令牌获取用户数据,如下所示:

from ask_sdk_model.ui import SimpleCard

speech_output = ''

if account_linking_token is not None:
   url = "https://api.amazon.com/user/profile?access_token{}"\
         .format(account_linking_token)
   user_data = requests.get(url).json()
   # retrieve the required user info here and populate output
   # speech_output = ...
else:
   # output msg when account linking is not done
   # speech_output = ...

# return this response from the intent handler function
response = handler_input.response_builder
            .speak(speech_output)
            .ask(reprompt)
            .set_card(SimpleCard(speech_output))
            .response
于 2021-05-06T08:21:07.247 回答