4

我已经尝试并在我的 html 中使用了 gigya showLoginUI javascript 插件。该插件呈现社交图标。我正在尝试使用 gigya 的重定向功能。我在我的 javascript 中提到了 redirectURL。仍然 gigya 不会重定向到指定的 url。请找到下面的代码示例

gigya.socialize.showLoginUI({
            height: 85
               ,width: 100,
            showTermsLink:false // remove 'Terms' link
            ,hideGigyaLink:true // remove 'Gigya' link
            ,buttonsStyle: 'standard' // Change the default buttons design to "Full Logos" design
            ,enabledProviders: 'facebook,twitter'
            ,showWhatsThis: false // Pop-up a hint describing the Login Plugin, when the user rolls over the Gigya link.
                   ,containerID: 'loginDiv' // The component will embed itself inside the loginDiv Div 

            ,sessionExpiration:0,
            redirectURL:'https:...',
            authCodeOnly:'true',
        });
4

1 回答 1

3

根据 gigya 文档,如果 redirectURL 需要工作,showLoginUI js 应该有参数

authFlow:'redirect'

包含在其中。您的 javascript 中缺少此参数。请参阅文档

gigya 文档

于 2013-01-21T11:27:25.930 回答