We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b74443 commit 9e09219Copy full SHA for 9e09219
auth.php
@@ -1,6 +1,5 @@
1
<?php
2
$url = "https://api.instagram.com/oauth/access_token";
3
-echo('Please wait while we fetch your access_token');
4
$curl = curl_init($url);
5
curl_setopt($curl, CURLOPT_URL, $url);
6
curl_setopt($curl, CURLOPT_POST, true);
@@ -14,10 +13,6 @@
14
13
15
$data = "client_id=746720933176046&client_secret=6fbcc075c5afd5d8556a8bdcc814d5f3&grant_type=authorization_code&redirect_uri=https://cybergirl.in/auth.php&code=".$_GET['code'];
16
// echo($data);
17
-echo("\r\n");
18
-echo('Checking.....');
19
-echo($_GET['code']);
20
21
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
22
23
// $resp = curl_exec($curl);
0 commit comments