如何在Django框架中使用Box-API

时间:2019-04-18 20:48:32

标签: python django box-api

我正在尝试使用Django框架创建Web应用程序(我是Web应用程序创建和Django的初学者),并且想使用Box-api访问媒体/ mp3文件。我需要使用OAuth2进行身份验证,并且尝试按照本页(https://developer.box.com/docs/authenticate-with-oauth-2)上的说明进行操作,但是我不确定代码块应该放在哪里。例如,我假设

# Auth config
client_id = 'YOUR CLIENT ID'
client_secret='YOUR CLIENT SECRET'
redirect_uri = 'http://127.0.0.1:5000/return'

将进入settings.py, 但我不确定其他类似的代码块

from boxsdk import Client
from boxsdk import OAuth2

import config_oauth

# Create new OAuth client & csrf token
oauth = OAuth2(
  client_id=config_oauth.client_id,
  client_secret=config_oauth.client_secret
)
csrf_token = ''

global csrf_token
auth_url, csrf_token = oauth.get_authorization_url(config_oauth.redirect_uri)

return redirect(auth_url)

# Fetch access token and make authenticated request
@app.route('/return')
def capture():
  # Capture auth code and csrf token via state
  code = request.args.get('code')
  state = request.args.get('state')

  # If csrf token matches, fetch tokens
  assert state == csrf_token
  access_token, refresh_token = oauth.authenticate(code)

  # PERFORM API ACTIONS WITH ACCESS TOKEN

我认为这些应该放在views.py下,但这样做时会出现一些语法错误。任何帮助将不胜感激!

0 个答案:

没有答案