Announcements

Help Wizard

Step 1

NEXT STEP

FAQs

Please see below the most popular frequently asked questions.

Loading article...

Loading faqs...

VIEW ALL

Ongoing Issues

Please see below the current ongoing issues which are under investigation.

Loading issue...

Loading ongoing issues...

VIEW ALL

[WEB API] Accept button not working on user data's authorization page

Solved!

[WEB API] Accept button not working on user data's authorization page

Plan

Premium

Fr

 

Device

Macbook Pro mid 2014

Operating System

MacOs Big Sur 11.4

 

My Question or Issue

I'm bulding a PHP/Symfony app which uses the WebAPI.

So I perform the first step to initiate the dialog with the API : 

 

 

 

 

 

 

 

 

 

$state = $session->generateState();
    $options = [
    'scope' => [
        'playlist-read-private',
        'user-modify-playback-state',
        'user-read-playback-state',
    ],
    'state' => $state,
    'show_dialog' => true
                ];

    $_SESSION['scope']=serialize($options['scope']);
    $_SESSION['state']=$state;

    // finally all data of the session are stored in a session variable
echo $session->getAuthorizeUrl($options);
header('Location: ' . $session->getAuthorizeUrl($options));
die();

 

 

 

 

 

 

 

 

 

 

And so the user is redirected to the page where he has to authorize or not the app to access his data. There are two buttons on this page : one accept button and one cancel button.

 

The issue is with the accept button  : it does work once. After that if the user comes back on the page, the button is non more active. I mean if you click on the button nothing happens.

 

I tried changing the option "showdialog" to false. Here's what happens when doing so : the first time after the change the button works, the second time and the other times it fails... Same behaviour when I change from false to true...

Any idea?

 

 

 

 

Image 21-04-2023 à 11.03.png
Reply

Accepted Solutions
Marked as solution

In case someone finds this I found the cause of this issue : my way of dealing with $_SESSION variable in my symfony php app. Nothing about Spotify

View solution in original post

3 Replies
Marked as solution

In case someone finds this I found the cause of this issue : my way of dealing with $_SESSION variable in my symfony php app. Nothing about Spotify

That's an amazing Solution, Thanks Dear !!


Exotic Car Dealership Dubai

It seems like the issue could be related to the button’s event listener not being reattached when the user revisits the page. Try checking if the event handler is being removed or if the button is disabled after the first click. Also, inspect the console for any JavaScript errors and verify if there’s any caching issue causing the button to become unresponsive. You might also try forcing a re-render or resetting the state when the user navigates back to the page

Luxury Car Accessories Shop in Dubai

Suggested posts