Tôi đang cố gắng truy cập cấu hình ứng dụng truy cập bên trong bản thiết kế authorisation.py
trong một gói api. Tôi đang khởi tạo bản thiết kế __init__.py
được sử dụng trong đó authorisation.py
.
__init__.py
from flask import Blueprint
api_blueprint = Blueprint("xxx.api", __name__, None)
from api import authorisation
Authorisation.py
from flask import request, jsonify, current_app
from ..oauth_adapter import OauthAdapter
from api import api_blueprint as api
client_id = current_app.config.get('CLIENT_ID')
client_secret = current_app.config.get('CLIENT_SECRET')
scope = current_app.config.get('SCOPE')
callback = current_app.config.get('CALLBACK')
auth = OauthAdapter(client_id, client_secret, scope, callback)
@api.route('/authorisation_url')
def authorisation_url():
url = auth.get_authorisation_url()
return str(url)
Tôi nhận được RuntimeError: hoạt động bên ngoài ngữ cảnh ứng dụng
Tôi hiểu tại sao lại như vậy nhưng cách chính xác để truy cập các cài đặt cấu hình đó là gì?
---- Cập nhật ---- Tạm thời, tôi đã làm xong việc này.
@api.route('/authorisation_url')
def authorisation_url():
client_id, client_secret, scope, callback = config_helper.get_config()
auth = OauthAdapter(client_id, client_secret, scope, callback)
url = auth.get_authorisation_url()
return str(url)
current_app
proxy chỉ khả dụng trong ngữ cảnh của một yêu cầu.