実現したいこと
https://www.lolzzz5.com/callback
にアクセスできるようにしたいです
前提
xserverで取得したドメインです
尚、サーバーはvpsではなくレンタルサーバーです
https://www.lolzzz5.com/callback
に404エラー出さずにアクセスしたいです
このプログラム中にhttps://www.lolzzz5.com/callback
にリダイレクトしてもターミナル上で反応なく、404エラーがででhttps://www.lolzzz5.com/callback
にアクセスできません
該当のソースコード
python
1from flask import Flask, render_template, request 2from threading import Thread 3import os 4import requests 5import json 6from os import environ as secrets 7 8from datetime import date 9import datetime 10 11 12 13 14config = { 15 "CACHE_TYPE": "RedisCache", 16 "CACHE_REDIS_HOST": "localhost", 17 "CACHE_REDIS_PORT": 80, 18} 19 20app = Flask(__name__) 21app.config.from_mapping(config) 22 23API_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" 24 25app = Flask("app") 26 27 28 29CLIENT_ID = 'xxxxxxxxx' # DiscordアプリケーションのクライアントID 30CLIENT_SECRET = 'xxxxxxxxxx' # Discordアプリケーションのクライアントシークレット 31REDIRECT_URI = 'https://www.lolzzz5.com/callback' # リダイレクトURI。 32 33 34 35@app.route('/callback') 36def callback(): 37 # ユーザーのトークンを取得します。 38 code = request.args.get('code') 39 headers = { 40 'Content-Type': 'application/x-www-form-urlencoded' 41 } 42 data = { 43 'client_id': CLIENT_ID, 44 'client_secret': CLIENT_SECRET, 45 'grant_type': 'authorization_code', 46 'code': code, 47 'redirect_uri': REDIRECT_URI, 48 'scope': 'identify' 49 } 50 response = requests.post('https://discord.com/api/oauth2/token', headers=headers, data=data) 51 print (response.json) 52 token = response.json()['access_token'] 53 54 # Discord APIを使用して、ユーザー情報を取得します。 55 headers = { 56 'Authorization': f'Bearer {token}' 57 } 58 response = requests.get('https://discord.com/api/users/@me', headers=headers) 59 user_id = response.json()['id'] 60 print (token) 61 62 return f'Token: {token}, User ID: {user_id}' 63 64if __name__ == '__main__': 65 app.debug = True 66 app.run(host='localhost') 67 68 69def main(): 70 return "M.Bot起動中" 71 72 73def run():) 74 app.run(host="0.0.0.0", 75 port=80) 76 77 78def start(): 79 server = Thread(target=run) 80 server.start()
試したこと
portを調べて変更したりしました
補足情報(FW/ツールのバージョンなど)
python3
vscode
回答1件
あなたの回答
tips
プレビュー