I keep getting this error from Windows Live
The provided value for the input parameter 'redirect_uri' is not valid. The expected value is 'https://login.live.com/oauth20_desktop.srf' or the URL that matches the redirect
Why do I keep getting this error. I have a domain installed in an application for a live Windows developer
in the <head> element I
<script src="//js.live.net/v5.0/wl.js"></script>
just below the <body> element I
WL.init({ client_id: '{S_AL_WL_CLIENT_ID}', //{S_AL_WL_CLIENT_ID} = phpbb template variable for client_id redirect_uri: '{AL_BOARD_URL}', //{AL_BOARD_URL} = phpbb template variable for the urlencoded domain name response_type: 'token', scope: ["wl.signin", "wl.basic", "wl.birthday", "wl.emails", "wl.work_profile", "wl.postal_addresses"] });
login button
<div id="login"> <a href="#"><img src="images/windows_live_connect.png" alt="Windows Live" /></a> </div>
listener
jQuery('#login a').click(function(e) { e.preventDefault(); WL.login({ scope: ["wl.signin", "wl.basic", "wl.birthday", "wl.emails", "wl.work_profile", "wl.postal_addresses"] }).then(function (response) {
source share