본문으로 바로가기

kakao flask

category 코딩 예제 2018. 12. 3. 18:06
반응형

===============================================

flask를 이용한 웹 서버 구동(?) 사실 뭔지모름 ㅎ

===============================================


from flask import Flask, render_template, redirect, url_for, request

import requests

import json

app = Flask(__name__)


@app.route('/')

def index():

    return render_template('index.html') 

# Python 폴더 내 templates 폴더 만들고 안에 index.html 있어야함.

jinja2.exceptions.TemplateNotFound 해결법


@app.route('/oauth')

def oauth():

    code = str(request.args.get('code'))

    return str(code)


if __name__ == '__main__':

    app.run(debug = True)


===============================================

엑세스 토큰을 받기위한 카카오 로그인

===============================================


<!DOCTYPE html>

<html>

<head>

    <meta charset="utf-8">

    <title>index</title>

</head>

<body>

    <a href="https://kauth.kakao.com/oauth/authorize?client_id=REST_KEY&redirect_uri=http://localhost:5000/oauth&response_type=code">

        Kakao Login

    </a>

</body>

</html>

반응형

'코딩 예제' 카테고리의 다른 글

Kakao Book Search  (0) 2018.12.13
Random값의 범위 조절  (0) 2018.12.12
로또번호  (0) 2018.12.12
Kakao link label  (0) 2018.12.09
csv 파일쓰기  (0) 2018.11.30