admin管理员组

文章数量:1345174

I keep receiving this error from windows live

The provided value for the input parameter 'redirect_uri' is not valid. The expected value is '.srf' or a URL which matches the redirect

Why do I keep receiving this error. I have the domain set in the windows live developer app

in the <head> element I have

<script src="//js.live/v5.0/wl.js"></script>

just below the <body> element I have

  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"]
});

the login button is

    <div id="login">
        <a href="#"><img src="images/windows_live_connect.png" alt="Windows Live" /></a> 
    </div>

the 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) 
            {
                //do something with stuff here. You know brainy type ajaxy stuff to auth a user
            },
            function (responseFailed) 
            {
                console.log("Error signing in: " + responseFailed.error_description);
            });

});

I keep receiving this error from windows live

The provided value for the input parameter 'redirect_uri' is not valid. The expected value is 'https://login.live./oauth20_desktop.srf' or a URL which matches the redirect

Why do I keep receiving this error. I have the domain set in the windows live developer app

in the <head> element I have

<script src="//js.live/v5.0/wl.js"></script>

just below the <body> element I have

  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"]
});

the login button is

    <div id="login">
        <a href="#"><img src="images/windows_live_connect.png" alt="Windows Live" /></a> 
    </div>

the 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) 
            {
                //do something with stuff here. You know brainy type ajaxy stuff to auth a user
            },
            function (responseFailed) 
            {
                console.log("Error signing in: " + responseFailed.error_description);
            });

});
Share Improve this question edited Sep 27, 2012 at 16:43 Damien Keitel asked Sep 27, 2012 at 10:41 Damien KeitelDamien Keitel 7861 gold badge5 silver badges12 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 5

The problem turned out that windows-live redirect_uri has to be exactly http://www.yourdomain. and not http://yourdomain.. So if a user inputs http://yourdomain. then this error will show but if a user has http://www.yourdomain. then the script works.

I think I have been very spoilt with the Facebook Api.

So in the end I just made a regex to match against any url using the login button and force it to be www with .htaccess.

本文标签: javascriptThe provided value for the input parameter 39redirecturi39 is not validStack Overflow