我正试图深入FourSquare API
我在developers.foursquare.com
创建了一个应用
现在我正在尝试登录工作。
我正在使用此页面作为参考的起点。
这是它向我显示的用于验证的语法
https://foursquare.com/oauth2/authenticate
?client_id=YOUR_CLIENT_ID
&response_type=code
&redirect_uri=YOUR_REGISTERED_REDIRECT_URI
我认为这是我使用PHP To Do A http GET
???
它应该是这样的吗?
<?php
$response = http_get("https://foursquare.com/oauth2/authenticate",
array("?client_id=MyClientIdIsHere" ,"&response_type=code" ,
"&redirect_uri=http://www.MYRedirectURL"), $info);
?>
如果有人知道在使用foursquare的任何教程的方向拍摄我会很感激。
这一切都是用http请求完成的吗?