如何連接到Instagram API使用PHP來驗證用戶,當我來到服務器他的數據?在此先感謝通過php連接到instagram API
0
A
回答
2
首先,你需要registrate您的應用程序: http://instagram.com/developer/clients/manage/
接下來在PHP處理程序:
$url = "https://api.instagram.com/oauth/access_token";
$access_token_parameters = array(
'client_id' => '%client_id%',
'client_secret' => '%client_secret%',
'grant_type' => 'authorization_code',
'redirect_uri' => 'http://domain.com/index.php',
'code' => $code
);
$curl = curl_init($url); // we init curl by passing the url
curl_setopt($curl,CURLOPT_POST,true); // to send a POST request
curl_setopt($curl,CURLOPT_POSTFIELDS,$access_token_parameters); // indicate the data to send
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); // to return the transfer as a string of the return value of curl_exec() instead of outputting it out directly.
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); // to stop cURL from verifying the peer's certificate.
$result = curl_exec($curl); // to perform the curl session
curl_close($curl); // to close the curl session
$user_data = json_decode($result,true);
+0
非常感謝,這正是我們所需要的。請原諒我的無知! – user3663565
+1
不客氣! – SergeevD
相關問題
- 1. 無法通過omniauth Rails連接到Instagram
- 2. 通過PHP連接到Google AdSense API
- 3. 通過php連接到api(traileraddict)
- 4. 使用PHP通過Instagram存儲json API
- 5. 通過PHP連接到FTPS
- 6. 通過php連接到mysql
- 7. 通過ODBC通過PHP連接到Oracle
- 8. 通過API將照片發佈到Instagram
- 9. Instagram的API通過的NodeJS
- 10. 通過Instagram API訪問
- 11. 通過PHP在線連接到QuickBooks的
- 12. 通過PHP連接到Oracle數據庫
- 13. 通過電報API連接到dc
- 14. 通過`httr :: POST`連接到ITIS SOLR API
- 15. 通過Python連接到Google Content API
- 16. 通過網絡連接到SimPro API
- 17. 通過C#連接到Cerberus FTP API
- 18. 無法通過cURL連接到PayPal API
- 19. ios直接通過api將照片發佈到instagram
- 20. 通過API的TFT連接
- 21. 通過PHP連接到mysql數據庫通過PHP
- 22. 是否可以通過PHP連接到.NET API?
- 23. 通過API訪問instagram通知訂閱
- 24. php - 新Instagram API
- 25. 從PHP通過終端連接到MYSQL
- 26. 通過PHP連接到LDAP的問題
- 27. 無法通過PHP連接到MongoDB
- 28. 從通過連接到PHP服務器
- 29. 無法通過PHP連接到MSSQL
- 30. 無法通過PHP連接到docker mysql
我們會需要更多一點的工作。你有沒有開始的東西不符合你的想法? – complex857
我已閱讀文檔,但沒有任何理解) – user3663565