dailymotion javascript SDK login redirect_uri mismatch -


my problem is: when try login of dailymotion javascript sdk

dm.login( my_callback, {     scope: my_scopes,      redirect_uri: my_url,      response_type: "code"  }); 

the popup open , not load daylimotion login page, returning page redirect_uri url params error:

**[my_url]?error=redirect_uri_mismatch&error_description=this+%60redirect_uri%27+isn%27t+allowed+by+%60client_id%27+configuration.&state=dmauth_xxxxxxxxx**

but in dailymotion configuration, return url equal redirect_uri sent param dm.login

any sugestions?

that sounds same problem dailymotion callback url error

you should make sure redirect_uri matches "callback url" defined when creating api key @ http://www.dailymotion.com/settings/developer . not matching, trigger error mentioned.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -