Questions tagged [account-linking]

Account linking is referred to an ability (and a process) to connect the identity of the user with a user account in a different system.

Account linking is referred to an ability (and a process) to connect the identity of the user with a user account in a different system.

It's used in systems like Amazon Alexa and Actions on Google, for example during their OAuth 2.0 flows.

47 questions
0
votes
1 answer

Dailogflow account unlinking using webhook

I have successfully linked the account in dialogflow. I can also validate the access token received in the request. but in case of invalid access token I want to ask the user to again link their account by first unlinking the account from the…
0
votes
1 answer

Google Smarthome oauth account linking is not working

I have implemented an oauth account linking. If I test it with an old cell phone (Android 5.1) it is working. On another phone (Android 9) with the same google account it is not working. What happens: It calls my auth endpoint. I redirect to a…
0
votes
1 answer

Google Smarthome Action account linking missing user information

my code is based on this example https://codelabs.developers.google.com/codelabs/smarthome-washer The OAuth process is working. But now I want to know who is the…
0
votes
2 answers

Account Linking with my own OAuth server in Actions on Google missing grant type

I'm trying to implement a smarthome action. It started with this example https://codelabs.developers.google.com/codelabs/smarthome-washer/#0 And this was working. This example uses firestore as the cloud service. I want to implement the server by…
0
votes
1 answer

Customise the Account Linking message in Dialogflow Assistant

I tried customizing the message that the Assistant says for Account Linking. I am able to add additional messages to it, but unable to change the default message that is fed in the Dialogflow Assistant. Is there anyway I can edit the message. If…
0
votes
1 answer

Continuing a conversation after account linking using google in dialogflow

In google dialogflow using node js , i have used the account linking feature to store user data into the database. After the signin intent, i want to trigger welcome intent or any other intent. Now its getting signed in and nothing happens after…
0
votes
1 answer

Google Actions & Auth0 account linking multiple languages

Our account linking from Google Actions to Auth0 works. We use the Authorization Code flow with https://xxx.auth0.com/authorize?xxx. We now need to release the Google Action in multiple languages. During a user's initial account linking process, how…
0
votes
1 answer

Google Assitant App not storing user information

So I have been following this documentation provided by Google: https://developers.google.com/actions/identity/user-info Recently, the request.userId was deprecated so Google. So I turned to this documentation which specifies use the…
0
votes
0 answers

How to get user's Google Id when accounts are linked with Action on Google

Within the Dialog Flow console we can request that our Default Welcome Intent requires sign in from the user. We have this enabled. After the user is signed in and the account is linked, we want to get the user's google id so that it can be…
islalobo
  • 617
  • 2
  • 8
  • 22
0
votes
0 answers

How can i update Account Linking with gactions?

I want to update account linking information of action on google with gactions or https://actions.googleapis.com/v2/. When i execute gactions this only update the action information but manifest and account linking are not update. This is the…
0
votes
0 answers

Dialogflow account linking with Node JS application

I am new to Dialogflow. I want to do an account linking with my node js application. So when I click on signin button in simulator, popup is opening with the request below Request URL : https://dialogflow.herokuapp.com/login response_type :…
Spring
  • 648
  • 1
  • 7
  • 20
0
votes
0 answers

Google Assistant account linking with Keycloak

I am building a Dialogflow agent and I am trying to have account linking with OAuth between my website and Google Assistant. And I am using Keycloak as my authentification server. Keycloak configuration Account Linking Result Then after I put…
0
votes
0 answers

Actions on Google new SignIn() is cancelling before user can give input

We are creating an Action on Google using Dialogflow V2 API. We are using firebase cloud functions for our fulfillment and we are using an external rest api for our crud operations. We have an undeployed action that I have tested in the simulator.…
islalobo
  • 617
  • 2
  • 8
  • 22
0
votes
1 answer

actions on google, Oauth account Linking

I have been trying to connect an assistant action to my backend server I am using my own Oauth server and followed the instructions on https://developers.google.com/actions/identity/oauth2?oauth=code I am using actions_intent_Sign_in for my…
0
votes
1 answer

Account Linking redirect in Actions on Google simulator

I'm building an app utilizing the new Action on Google Java API. As I understand from dealing with account linking in Alexa, the initial flow (when the userId in the JSON request is null) should redirect to a sign in form to elicit user consent: …