4

私は自分のhtmlでgigyashowLoginUIjavascriptプラグインを試して使用しました。プラグインはソーシャルアイコンをレンダリングしました。gigyaのリダイレクト機能を使おうとしています。私はJavaScriptでredirectURLについて言及しました。それでも、gigyaは指定されたURLにリダイレクトしません。belwoコードサンプルを見つけてください

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が機能する必要がある場合、showLoginUIjsにはパラメータが必要です。

authFlow:'redirect'

それに含まれています。このパラメータはJavaScriptにありません。でドキュメントを参照してください

gigyaドキュメント

于 2013-01-21T11:27:25.930 に答える