我正嘗試使用「手動構建登錄流」在我的Canvas應用中實現Facebook登錄。爲了成功地實現這一點,我要重定向到與目標Facebook的身份驗證URL =「_top」參數,基本上是以下重定向:在Google App Engine中執行重定向時的目標屬性(Python)
<a href="https://www.facebook.com/dialog/oauth?client_id={app-id}&redirect_uri={redirect-uri}" target="_top">Redirect here </a>
我知道我們可以用self.redirect({url})
在GAE執行重定向,但我無法找到如何在上面的html代碼中設置目標。
請幫我一把。