-
-
Notifications
You must be signed in to change notification settings - Fork 12
Environment Variables
Sangwoo Jeong edited this page Nov 28, 2024
·
1 revision
.env λ ν νλ¦Ώ λ΄λΆ λλ app.js μμ μ¬μ©νλ μμ μ€μ νμΌμ λλ€. νλ μμν¬μμ μ§μ μ¬μ©νλ κ²μ΄ μλ ν νλ¦Ώμμ μ¬μ©λλ€λ μ μμ tidory.config.js μ ꡬλ³λ©λλ€.
μλ₯Ό λ€μ΄ ν°μ€ν 리μ APIμ λ±λ‘λ μ±μ μ¬μ©νκΈ° μν΄ λ€μκ³Ό κ°μ΄ ν°μ€ν 리 API λ‘κ·ΈμΈμ μν μμκ° μ μλμ΄ μλ€κ³ κ°μ ν΄λ΄ μλ€.
TISTORY_CLIENT_ID=dc08305218d22fb1af479b044d4707d0
TISTORY_CALLBACK=http://localhost:8080
μ΄μ μ΄λ κ² μ μλ νκ²½λ³μλ ν
νλ¦Ώ λ΄λΆμ μ»΄ν¬λνΈμμ μ¬μ©ν μ μμ΅λλ€. νκ²½λ³μλ μ»΄νμΌ νμμ process.env
μ μ μλ©λλ€.
form(method="GET" action="https://www.tistory.com/oauth/authorize/")
input(type="hidden"
name="client_id"
value=`${process.env.TISTORY_CLIENT_ID}`)
input(type="hidden"
name="redirect_uri"
value=`${process.env.TISTORY_CALLBACK}`)
input(type="hidden" name="response_type" value="token")
button(type="submit") Sign in with TISTORY