python – OAuth:接收带参数作为POST数据的回调

前端之家收集整理的这篇文章主要介绍了python – OAuth:接收带参数作为POST数据的回调前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是OAuth的新手,我正在使用 oauth2 library on Python来完成我的工作.

目前,当我从服务器收到回调时,参数会在URL中出现:

http://mydomain/?oauth_verifier=(SOME_DATA)&oauth_token=(SOME_DATA)&oauth_callback_confirmed=true

我想知道是否有可能指示服务器以某种方式将这些参数(oauth_verifier,oauth_token,oauth_callback_confirmed)作为回调发送给我,而不是在URL中显示它们(作为GET请求)?

谢谢!

解决方法

不,不可能将回调参数编码为POST请求. OAuth 1.0 Spec表示提供程序向回调URL发出HTTP重定向

If the Consumer provided a callback URL in oauth_callback (as
described in Consumer Directs the User to the Service Provider),the
Service Provider constructs an HTTP GET request URL,and redirects the
User’s web browser to that URL with the following parameters:

自HTTP重定向can only be a GET,not a POST以来,您的回调只能包含URL中的参数.

原文链接:https://www.f2er.com/python/186414.html

猜你在找的Python相关文章