15

Python の requests-oauth ライブラリを使用して、Pocket にリクエストを送信しようとしています。残念ながら、このライブラリを使用するための説明はあまり包括的ではなく、私も oauth2 を初めて使用します。一般的に、私はその背後にあるプロセスを理解していますが、これを変換してリクエストを機能させることはできません。

私が探しているのは、requests-oauth2 を使用するためのより良いドキュメントまたはいくつかの包括的な例です。誰か知っていますか。

特に、要求がローカル マシン上のスクリプトによってのみ行われ、Web アプリケーションでは行われない場合に使用する redirect_url を理解していません。

4

2 に答える 2

5

If you're a fan of the requests Python library, I recommend using requests-oauthlib. It has great documentation and active developers.

Normally you setup the redirect_url in your application's settings on the API providers website. It looks like Pocket only supports browser based authentication, so you'll need a web browser to generate an access token that you can then embed in your script.

于 2013-09-04T06:22:16.167 に答える