foursquare-async
foursquare-async copied to clipboard
Exception Thrown when retrieving an access token
Exception Thrown when retrieving an access token. This is because curl returns response code of 0 which means it couldn't verify the ssl certificate. To fix just add
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
to the curl request.
Fix uploaded
Thanks. If you have forked the repository feel free to issue a pull request. Else I'll just manually add this change this week.