1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <!DOCTYPE html>
| <html lang="en">
| <head>
| <meta charset="UTF-8">
| <title>네이버 연동</title>
| </head>
| <body>
| <script>
| location.href = "https://nid.naver.com/oauth2.0/authorize?" +
| "client_id=Trl8vV30ctsUDlgGoWqZ&"+
| "response_type=code&" +
| "redirect_uri=https%3A%2F%2Fowlsolution.io%2FnaverOAuth2CallBack&" +
| "state=state_parameter_owl_its_value";
| </script>
| </body>
| </html>
|
|