Google Actions: Account linking sends GET request to token URLAccount Linking on Actions on GoogleGoogle Actions Account Linking FlowActions on Google Account Linking is not sending Authorization Header With RequestsTrouble with Account Linking (Actions on Google)Actions on google - account linkingAccount linking with actions on googleActions on Google Account Linking not working “Serviceid not configured”Actions on Google - Account Linking process hits Token URL before Authorize URL?Authenticating Users without Account Linking Google Actiongoogle actions account linking custom response

Are stackless C++20 coroutines a problem?

Are gangsters hired to attack people at a train station classified as a terrorist attack?

I have a domain, static IP address and many devices I'd like to access outside my house. How do I route them?

Are rockets faster than airplanes?

How can I indicate that what I'm saying is not sarcastic online?

Would using carbon dioxide as fuel work to reduce the greenhouse effect?

Does switching on an old games console without a cartridge damage it?

Pass USB 3.0 connection through D-SUB connector

How does mathematics work?

"It is what it is" in French

Short story where a flexible reality hardens to an unchanging one

High income and difficulty during interviews

Host telling me to cancel my booking in exchange for a discount?

Xcode 10.3 Installation

Chemistry Riddle

Is it ethical to tell my teaching assistant that I like him?

Is it better to merge "often" or only after completion do a big merge of feature branches?

How could Barty Crouch Jr. have run out of Polyjuice Potion at the end of the Goblet of Fire movie?

Can GPL and BSD licensed applications be used for government work?

How often should alkaline batteries be checked when they are in a device?

Is the apartment I want to rent a scam?

Adding gears to my grandson's 12" bike

Pgfplots fillbetween and Tikz shade

What's the 1 inch size square knob sticking out of wall?



Google Actions: Account linking sends GET request to token URL


Account Linking on Actions on GoogleGoogle Actions Account Linking FlowActions on Google Account Linking is not sending Authorization Header With RequestsTrouble with Account Linking (Actions on Google)Actions on google - account linkingAccount linking with actions on googleActions on Google Account Linking not working “Serviceid not configured”Actions on Google - Account Linking process hits Token URL before Authorize URL?Authenticating Users without Account Linking Google Actiongoogle actions account linking custom response






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have some problems with the Account Linking for Google Actions:



I have implemented the OAuth2 steps described in the documentation by Google. I have implemented my OAuth2 server and tested it via Postman and am able to get an access token as expected.



If I try to authenticate from the Google Home app by adding the service to my account, I get taken to my authorization form, the authorization works fine and responds with an authorization code to Google's redirect URI as it is supposed to do. However Googles return URI says 'Account linking failed' and then I get a message in the Google Home app : 'Can't update the settings. Check your connection'.



Another strange thing that I've see from my logging of my Token URL script: I can see an incoming GET request from Google to my Token URL instead of a POST request with the required data as mentioned in the Google documentation. So even though the message 'Account linking failed' appears, it seems that Google is calling my token URL, but with a GET instead of a POST.



These are the logs of the requests to the token URL:



REQUEST FROM POSTMAN (testing software) > OK



__SERVER
Array
(
[USER] => www-data
[HOME] => /var/www
[HTTP_ACCEPT_ENCODING] => gzip, deflate
[HTTP_ACCEPT] => */*
[HTTP_USER_AGENT] => PostmanRuntime/7.6.1
[HTTP_POSTMAN_TOKEN] => f85664e2-7d38-4511-9519-cddda3feec06
[HTTP_CACHE_CONTROL] => no-cache
[HTTP_CONTENT_TYPE] => application/x-www-form-urlencoded
[HTTP_CONTENT_LENGTH] => 145
[HTTP_CONNECTION] => close
[HTTP_HOST] => 127.0.0.1
[REDIRECT_STATUS] => 200
[SERVER_NAME] => _
[SERVER_PORT] => 80
[SERVER_ADDR] => 127.0.0.1
[REMOTE_PORT] => 38622
[REMOTE_ADDR] => 127.0.0.1
[SERVER_SOFTWARE] => nginx/1.12.2
[GATEWAY_INTERFACE] => CGI/1.1
[REQUEST_SCHEME] => http
[SERVER_PROTOCOL] => HTTP/1.0
[DOCUMENT_ROOT] => [******]
[DOCUMENT_URI] => /google/token/index.php
[REQUEST_URI] => /google/token/
[SCRIPT_NAME] => /google/token/index.php
[CONTENT_LENGTH] => 145
[CONTENT_TYPE] => application/x-www-form-urlencoded
[REQUEST_METHOD] => POST
[QUERY_STRING] =>
[SCRIPT_FILENAME] => [******]
[FCGI_ROLE] => RESPONDER
[PHP_SELF] => /google/token/index.php
[REQUEST_TIME_FLOAT] => 1553765980.9273
[REQUEST_TIME] => 1553765980
)
__POST
Array
(
[client_id] => [******]
[client_secret] => [******]
[grant_type] => authorization_code
[code] => [******]
)


REQUEST RECEIVED WHEN TESTING WITH GOOGLE HOME APP on smartphone > NOT OK



__SERVER
Array
(
[USER] => www-data
[HOME] => /var/www
[HTTP_ACCEPT_ENCODING] => gzip,deflate,br
[HTTP_USER_AGENT] => OpenAuth
[HTTP_CONTENT_TYPE] => application/x-www-form-urlencoded
[HTTP_CONNECTION] => close
[HTTP_HOST] => 127.0.0.1
[REDIRECT_STATUS] => 200
[SERVER_NAME] => _
[SERVER_PORT] => 80
[SERVER_ADDR] => 127.0.0.1
[REMOTE_PORT] => 46184
[REMOTE_ADDR] => 127.0.0.1
[SERVER_SOFTWARE] => nginx/1.12.2
[GATEWAY_INTERFACE] => CGI/1.1
[REQUEST_SCHEME] => http
[SERVER_PROTOCOL] => HTTP/1.0
[DOCUMENT_ROOT] => [******]
[DOCUMENT_URI] => /google/token/index.php
[REQUEST_URI] => /google/token/
[SCRIPT_NAME] => /google/token/index.php
[CONTENT_LENGTH] =>
[CONTENT_TYPE] => application/x-www-form-urlencoded
[REQUEST_METHOD] => GET
[QUERY_STRING] =>
[SCRIPT_FILENAME] => [******]
[FCGI_ROLE] => RESPONDER
[PHP_SELF] => /google/token/index.php
[REQUEST_TIME_FLOAT] => 1553767309.7797
[REQUEST_TIME] => 1553767309
)
__REQUEST
Array
(
)
__POST
Array
(
)
__GET
Array
(
)
-------------------------
__ANSWER
400: invalid grant


Configuration in Actions Console










share|improve this question
























  • koenvi welcome. Please read how to ask a good question in the help center.

    – tryman
    Mar 26 at 12:32











  • Include your code, screenshots or layoutfile and logcat. This will help you get a quicker response. Also follow the How To Ask guide before posting a question here: stackoverflow.com/help/how-to-ask If your question does not fit into the How To Ask guideline, you can try beginner programming forums and groups which will help you better than SO. If you've got precise technical problems with your code then post it on SO. If you do not follow the SO questions guideline your question might be downvoted or closed with no gain or response. You can edit your question and improve it

    – M Hamza Javed
    Mar 26 at 13:15











  • This seems odd for a couple of reasons. If possible, I would suggest updating your question (which is otherwise quite good, no matter what the previous commenters have said) with a screen shot of the Action Console where you have configured account linking (masking any sensitive information) and the logs from the GET that is happening against your Token URL (again, mask specific sensitive info). If you can get logs (either browser or server) from the auth exchange, that would be good as well.

    – Prisoner
    Mar 26 at 16:02

















0















I have some problems with the Account Linking for Google Actions:



I have implemented the OAuth2 steps described in the documentation by Google. I have implemented my OAuth2 server and tested it via Postman and am able to get an access token as expected.



If I try to authenticate from the Google Home app by adding the service to my account, I get taken to my authorization form, the authorization works fine and responds with an authorization code to Google's redirect URI as it is supposed to do. However Googles return URI says 'Account linking failed' and then I get a message in the Google Home app : 'Can't update the settings. Check your connection'.



Another strange thing that I've see from my logging of my Token URL script: I can see an incoming GET request from Google to my Token URL instead of a POST request with the required data as mentioned in the Google documentation. So even though the message 'Account linking failed' appears, it seems that Google is calling my token URL, but with a GET instead of a POST.



These are the logs of the requests to the token URL:



REQUEST FROM POSTMAN (testing software) > OK



__SERVER
Array
(
[USER] => www-data
[HOME] => /var/www
[HTTP_ACCEPT_ENCODING] => gzip, deflate
[HTTP_ACCEPT] => */*
[HTTP_USER_AGENT] => PostmanRuntime/7.6.1
[HTTP_POSTMAN_TOKEN] => f85664e2-7d38-4511-9519-cddda3feec06
[HTTP_CACHE_CONTROL] => no-cache
[HTTP_CONTENT_TYPE] => application/x-www-form-urlencoded
[HTTP_CONTENT_LENGTH] => 145
[HTTP_CONNECTION] => close
[HTTP_HOST] => 127.0.0.1
[REDIRECT_STATUS] => 200
[SERVER_NAME] => _
[SERVER_PORT] => 80
[SERVER_ADDR] => 127.0.0.1
[REMOTE_PORT] => 38622
[REMOTE_ADDR] => 127.0.0.1
[SERVER_SOFTWARE] => nginx/1.12.2
[GATEWAY_INTERFACE] => CGI/1.1
[REQUEST_SCHEME] => http
[SERVER_PROTOCOL] => HTTP/1.0
[DOCUMENT_ROOT] => [******]
[DOCUMENT_URI] => /google/token/index.php
[REQUEST_URI] => /google/token/
[SCRIPT_NAME] => /google/token/index.php
[CONTENT_LENGTH] => 145
[CONTENT_TYPE] => application/x-www-form-urlencoded
[REQUEST_METHOD] => POST
[QUERY_STRING] =>
[SCRIPT_FILENAME] => [******]
[FCGI_ROLE] => RESPONDER
[PHP_SELF] => /google/token/index.php
[REQUEST_TIME_FLOAT] => 1553765980.9273
[REQUEST_TIME] => 1553765980
)
__POST
Array
(
[client_id] => [******]
[client_secret] => [******]
[grant_type] => authorization_code
[code] => [******]
)


REQUEST RECEIVED WHEN TESTING WITH GOOGLE HOME APP on smartphone > NOT OK



__SERVER
Array
(
[USER] => www-data
[HOME] => /var/www
[HTTP_ACCEPT_ENCODING] => gzip,deflate,br
[HTTP_USER_AGENT] => OpenAuth
[HTTP_CONTENT_TYPE] => application/x-www-form-urlencoded
[HTTP_CONNECTION] => close
[HTTP_HOST] => 127.0.0.1
[REDIRECT_STATUS] => 200
[SERVER_NAME] => _
[SERVER_PORT] => 80
[SERVER_ADDR] => 127.0.0.1
[REMOTE_PORT] => 46184
[REMOTE_ADDR] => 127.0.0.1
[SERVER_SOFTWARE] => nginx/1.12.2
[GATEWAY_INTERFACE] => CGI/1.1
[REQUEST_SCHEME] => http
[SERVER_PROTOCOL] => HTTP/1.0
[DOCUMENT_ROOT] => [******]
[DOCUMENT_URI] => /google/token/index.php
[REQUEST_URI] => /google/token/
[SCRIPT_NAME] => /google/token/index.php
[CONTENT_LENGTH] =>
[CONTENT_TYPE] => application/x-www-form-urlencoded
[REQUEST_METHOD] => GET
[QUERY_STRING] =>
[SCRIPT_FILENAME] => [******]
[FCGI_ROLE] => RESPONDER
[PHP_SELF] => /google/token/index.php
[REQUEST_TIME_FLOAT] => 1553767309.7797
[REQUEST_TIME] => 1553767309
)
__REQUEST
Array
(
)
__POST
Array
(
)
__GET
Array
(
)
-------------------------
__ANSWER
400: invalid grant


Configuration in Actions Console










share|improve this question
























  • koenvi welcome. Please read how to ask a good question in the help center.

    – tryman
    Mar 26 at 12:32











  • Include your code, screenshots or layoutfile and logcat. This will help you get a quicker response. Also follow the How To Ask guide before posting a question here: stackoverflow.com/help/how-to-ask If your question does not fit into the How To Ask guideline, you can try beginner programming forums and groups which will help you better than SO. If you've got precise technical problems with your code then post it on SO. If you do not follow the SO questions guideline your question might be downvoted or closed with no gain or response. You can edit your question and improve it

    – M Hamza Javed
    Mar 26 at 13:15











  • This seems odd for a couple of reasons. If possible, I would suggest updating your question (which is otherwise quite good, no matter what the previous commenters have said) with a screen shot of the Action Console where you have configured account linking (masking any sensitive information) and the logs from the GET that is happening against your Token URL (again, mask specific sensitive info). If you can get logs (either browser or server) from the auth exchange, that would be good as well.

    – Prisoner
    Mar 26 at 16:02













0












0








0








I have some problems with the Account Linking for Google Actions:



I have implemented the OAuth2 steps described in the documentation by Google. I have implemented my OAuth2 server and tested it via Postman and am able to get an access token as expected.



If I try to authenticate from the Google Home app by adding the service to my account, I get taken to my authorization form, the authorization works fine and responds with an authorization code to Google's redirect URI as it is supposed to do. However Googles return URI says 'Account linking failed' and then I get a message in the Google Home app : 'Can't update the settings. Check your connection'.



Another strange thing that I've see from my logging of my Token URL script: I can see an incoming GET request from Google to my Token URL instead of a POST request with the required data as mentioned in the Google documentation. So even though the message 'Account linking failed' appears, it seems that Google is calling my token URL, but with a GET instead of a POST.



These are the logs of the requests to the token URL:



REQUEST FROM POSTMAN (testing software) > OK



__SERVER
Array
(
[USER] => www-data
[HOME] => /var/www
[HTTP_ACCEPT_ENCODING] => gzip, deflate
[HTTP_ACCEPT] => */*
[HTTP_USER_AGENT] => PostmanRuntime/7.6.1
[HTTP_POSTMAN_TOKEN] => f85664e2-7d38-4511-9519-cddda3feec06
[HTTP_CACHE_CONTROL] => no-cache
[HTTP_CONTENT_TYPE] => application/x-www-form-urlencoded
[HTTP_CONTENT_LENGTH] => 145
[HTTP_CONNECTION] => close
[HTTP_HOST] => 127.0.0.1
[REDIRECT_STATUS] => 200
[SERVER_NAME] => _
[SERVER_PORT] => 80
[SERVER_ADDR] => 127.0.0.1
[REMOTE_PORT] => 38622
[REMOTE_ADDR] => 127.0.0.1
[SERVER_SOFTWARE] => nginx/1.12.2
[GATEWAY_INTERFACE] => CGI/1.1
[REQUEST_SCHEME] => http
[SERVER_PROTOCOL] => HTTP/1.0
[DOCUMENT_ROOT] => [******]
[DOCUMENT_URI] => /google/token/index.php
[REQUEST_URI] => /google/token/
[SCRIPT_NAME] => /google/token/index.php
[CONTENT_LENGTH] => 145
[CONTENT_TYPE] => application/x-www-form-urlencoded
[REQUEST_METHOD] => POST
[QUERY_STRING] =>
[SCRIPT_FILENAME] => [******]
[FCGI_ROLE] => RESPONDER
[PHP_SELF] => /google/token/index.php
[REQUEST_TIME_FLOAT] => 1553765980.9273
[REQUEST_TIME] => 1553765980
)
__POST
Array
(
[client_id] => [******]
[client_secret] => [******]
[grant_type] => authorization_code
[code] => [******]
)


REQUEST RECEIVED WHEN TESTING WITH GOOGLE HOME APP on smartphone > NOT OK



__SERVER
Array
(
[USER] => www-data
[HOME] => /var/www
[HTTP_ACCEPT_ENCODING] => gzip,deflate,br
[HTTP_USER_AGENT] => OpenAuth
[HTTP_CONTENT_TYPE] => application/x-www-form-urlencoded
[HTTP_CONNECTION] => close
[HTTP_HOST] => 127.0.0.1
[REDIRECT_STATUS] => 200
[SERVER_NAME] => _
[SERVER_PORT] => 80
[SERVER_ADDR] => 127.0.0.1
[REMOTE_PORT] => 46184
[REMOTE_ADDR] => 127.0.0.1
[SERVER_SOFTWARE] => nginx/1.12.2
[GATEWAY_INTERFACE] => CGI/1.1
[REQUEST_SCHEME] => http
[SERVER_PROTOCOL] => HTTP/1.0
[DOCUMENT_ROOT] => [******]
[DOCUMENT_URI] => /google/token/index.php
[REQUEST_URI] => /google/token/
[SCRIPT_NAME] => /google/token/index.php
[CONTENT_LENGTH] =>
[CONTENT_TYPE] => application/x-www-form-urlencoded
[REQUEST_METHOD] => GET
[QUERY_STRING] =>
[SCRIPT_FILENAME] => [******]
[FCGI_ROLE] => RESPONDER
[PHP_SELF] => /google/token/index.php
[REQUEST_TIME_FLOAT] => 1553767309.7797
[REQUEST_TIME] => 1553767309
)
__REQUEST
Array
(
)
__POST
Array
(
)
__GET
Array
(
)
-------------------------
__ANSWER
400: invalid grant


Configuration in Actions Console










share|improve this question
















I have some problems with the Account Linking for Google Actions:



I have implemented the OAuth2 steps described in the documentation by Google. I have implemented my OAuth2 server and tested it via Postman and am able to get an access token as expected.



If I try to authenticate from the Google Home app by adding the service to my account, I get taken to my authorization form, the authorization works fine and responds with an authorization code to Google's redirect URI as it is supposed to do. However Googles return URI says 'Account linking failed' and then I get a message in the Google Home app : 'Can't update the settings. Check your connection'.



Another strange thing that I've see from my logging of my Token URL script: I can see an incoming GET request from Google to my Token URL instead of a POST request with the required data as mentioned in the Google documentation. So even though the message 'Account linking failed' appears, it seems that Google is calling my token URL, but with a GET instead of a POST.



These are the logs of the requests to the token URL:



REQUEST FROM POSTMAN (testing software) > OK



__SERVER
Array
(
[USER] => www-data
[HOME] => /var/www
[HTTP_ACCEPT_ENCODING] => gzip, deflate
[HTTP_ACCEPT] => */*
[HTTP_USER_AGENT] => PostmanRuntime/7.6.1
[HTTP_POSTMAN_TOKEN] => f85664e2-7d38-4511-9519-cddda3feec06
[HTTP_CACHE_CONTROL] => no-cache
[HTTP_CONTENT_TYPE] => application/x-www-form-urlencoded
[HTTP_CONTENT_LENGTH] => 145
[HTTP_CONNECTION] => close
[HTTP_HOST] => 127.0.0.1
[REDIRECT_STATUS] => 200
[SERVER_NAME] => _
[SERVER_PORT] => 80
[SERVER_ADDR] => 127.0.0.1
[REMOTE_PORT] => 38622
[REMOTE_ADDR] => 127.0.0.1
[SERVER_SOFTWARE] => nginx/1.12.2
[GATEWAY_INTERFACE] => CGI/1.1
[REQUEST_SCHEME] => http
[SERVER_PROTOCOL] => HTTP/1.0
[DOCUMENT_ROOT] => [******]
[DOCUMENT_URI] => /google/token/index.php
[REQUEST_URI] => /google/token/
[SCRIPT_NAME] => /google/token/index.php
[CONTENT_LENGTH] => 145
[CONTENT_TYPE] => application/x-www-form-urlencoded
[REQUEST_METHOD] => POST
[QUERY_STRING] =>
[SCRIPT_FILENAME] => [******]
[FCGI_ROLE] => RESPONDER
[PHP_SELF] => /google/token/index.php
[REQUEST_TIME_FLOAT] => 1553765980.9273
[REQUEST_TIME] => 1553765980
)
__POST
Array
(
[client_id] => [******]
[client_secret] => [******]
[grant_type] => authorization_code
[code] => [******]
)


REQUEST RECEIVED WHEN TESTING WITH GOOGLE HOME APP on smartphone > NOT OK



__SERVER
Array
(
[USER] => www-data
[HOME] => /var/www
[HTTP_ACCEPT_ENCODING] => gzip,deflate,br
[HTTP_USER_AGENT] => OpenAuth
[HTTP_CONTENT_TYPE] => application/x-www-form-urlencoded
[HTTP_CONNECTION] => close
[HTTP_HOST] => 127.0.0.1
[REDIRECT_STATUS] => 200
[SERVER_NAME] => _
[SERVER_PORT] => 80
[SERVER_ADDR] => 127.0.0.1
[REMOTE_PORT] => 46184
[REMOTE_ADDR] => 127.0.0.1
[SERVER_SOFTWARE] => nginx/1.12.2
[GATEWAY_INTERFACE] => CGI/1.1
[REQUEST_SCHEME] => http
[SERVER_PROTOCOL] => HTTP/1.0
[DOCUMENT_ROOT] => [******]
[DOCUMENT_URI] => /google/token/index.php
[REQUEST_URI] => /google/token/
[SCRIPT_NAME] => /google/token/index.php
[CONTENT_LENGTH] =>
[CONTENT_TYPE] => application/x-www-form-urlencoded
[REQUEST_METHOD] => GET
[QUERY_STRING] =>
[SCRIPT_FILENAME] => [******]
[FCGI_ROLE] => RESPONDER
[PHP_SELF] => /google/token/index.php
[REQUEST_TIME_FLOAT] => 1553767309.7797
[REQUEST_TIME] => 1553767309
)
__REQUEST
Array
(
)
__POST
Array
(
)
__GET
Array
(
)
-------------------------
__ANSWER
400: invalid grant


Configuration in Actions Console







actions-on-google






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 28 at 10:14







koenvi

















asked Mar 26 at 11:49









koenvikoenvi

113 bronze badges




113 bronze badges












  • koenvi welcome. Please read how to ask a good question in the help center.

    – tryman
    Mar 26 at 12:32











  • Include your code, screenshots or layoutfile and logcat. This will help you get a quicker response. Also follow the How To Ask guide before posting a question here: stackoverflow.com/help/how-to-ask If your question does not fit into the How To Ask guideline, you can try beginner programming forums and groups which will help you better than SO. If you've got precise technical problems with your code then post it on SO. If you do not follow the SO questions guideline your question might be downvoted or closed with no gain or response. You can edit your question and improve it

    – M Hamza Javed
    Mar 26 at 13:15











  • This seems odd for a couple of reasons. If possible, I would suggest updating your question (which is otherwise quite good, no matter what the previous commenters have said) with a screen shot of the Action Console where you have configured account linking (masking any sensitive information) and the logs from the GET that is happening against your Token URL (again, mask specific sensitive info). If you can get logs (either browser or server) from the auth exchange, that would be good as well.

    – Prisoner
    Mar 26 at 16:02

















  • koenvi welcome. Please read how to ask a good question in the help center.

    – tryman
    Mar 26 at 12:32











  • Include your code, screenshots or layoutfile and logcat. This will help you get a quicker response. Also follow the How To Ask guide before posting a question here: stackoverflow.com/help/how-to-ask If your question does not fit into the How To Ask guideline, you can try beginner programming forums and groups which will help you better than SO. If you've got precise technical problems with your code then post it on SO. If you do not follow the SO questions guideline your question might be downvoted or closed with no gain or response. You can edit your question and improve it

    – M Hamza Javed
    Mar 26 at 13:15











  • This seems odd for a couple of reasons. If possible, I would suggest updating your question (which is otherwise quite good, no matter what the previous commenters have said) with a screen shot of the Action Console where you have configured account linking (masking any sensitive information) and the logs from the GET that is happening against your Token URL (again, mask specific sensitive info). If you can get logs (either browser or server) from the auth exchange, that would be good as well.

    – Prisoner
    Mar 26 at 16:02
















koenvi welcome. Please read how to ask a good question in the help center.

– tryman
Mar 26 at 12:32





koenvi welcome. Please read how to ask a good question in the help center.

– tryman
Mar 26 at 12:32













Include your code, screenshots or layoutfile and logcat. This will help you get a quicker response. Also follow the How To Ask guide before posting a question here: stackoverflow.com/help/how-to-ask If your question does not fit into the How To Ask guideline, you can try beginner programming forums and groups which will help you better than SO. If you've got precise technical problems with your code then post it on SO. If you do not follow the SO questions guideline your question might be downvoted or closed with no gain or response. You can edit your question and improve it

– M Hamza Javed
Mar 26 at 13:15





Include your code, screenshots or layoutfile and logcat. This will help you get a quicker response. Also follow the How To Ask guide before posting a question here: stackoverflow.com/help/how-to-ask If your question does not fit into the How To Ask guideline, you can try beginner programming forums and groups which will help you better than SO. If you've got precise technical problems with your code then post it on SO. If you do not follow the SO questions guideline your question might be downvoted or closed with no gain or response. You can edit your question and improve it

– M Hamza Javed
Mar 26 at 13:15













This seems odd for a couple of reasons. If possible, I would suggest updating your question (which is otherwise quite good, no matter what the previous commenters have said) with a screen shot of the Action Console where you have configured account linking (masking any sensitive information) and the logs from the GET that is happening against your Token URL (again, mask specific sensitive info). If you can get logs (either browser or server) from the auth exchange, that would be good as well.

– Prisoner
Mar 26 at 16:02





This seems odd for a couple of reasons. If possible, I would suggest updating your question (which is otherwise quite good, no matter what the previous commenters have said) with a screen shot of the Action Console where you have configured account linking (masking any sensitive information) and the logs from the GET that is happening against your Token URL (again, mask specific sensitive info). If you can get logs (either browser or server) from the auth exchange, that would be good as well.

– Prisoner
Mar 26 at 16:02












1 Answer
1






active

oldest

votes


















1














Problem seemed to be caused by the redirect of / to /index.php without the POST values.



Fixed it by changing my URLs in the Actions Console to /index.php and now the linking works fine.






share|improve this answer






















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55356431%2fgoogle-actions-account-linking-sends-get-request-to-token-url%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    Problem seemed to be caused by the redirect of / to /index.php without the POST values.



    Fixed it by changing my URLs in the Actions Console to /index.php and now the linking works fine.






    share|improve this answer



























      1














      Problem seemed to be caused by the redirect of / to /index.php without the POST values.



      Fixed it by changing my URLs in the Actions Console to /index.php and now the linking works fine.






      share|improve this answer

























        1












        1








        1







        Problem seemed to be caused by the redirect of / to /index.php without the POST values.



        Fixed it by changing my URLs in the Actions Console to /index.php and now the linking works fine.






        share|improve this answer













        Problem seemed to be caused by the redirect of / to /index.php without the POST values.



        Fixed it by changing my URLs in the Actions Console to /index.php and now the linking works fine.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 28 at 12:08









        koenvikoenvi

        113 bronze badges




        113 bronze badges


















            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55356431%2fgoogle-actions-account-linking-sends-get-request-to-token-url%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript