1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| <!DOCTYPE html>
| <html lang="en">
| <head>
| <meta charset="UTF-8">
| <title>페이스북 연동</title>
| </head>
| <body>
| <script>
| location.href = "https://www.facebook.com/v3.1/dialog/oauth?" +
| "client_id=1967163700251105&" +
| "redirect_uri=https%3A%2F%2Fwww.owlsolution.io%2FfacebookOAuth2CallBack&" +
| "state=state_parameter_owl_its_value";
| </script>
| </body>
| </html>
|
|