I have double, triple checked the keys, the javascript sdk works great, but when I try to connect with the php sdk, i get Fatal error: Uncaught exception 'Parse\ParseException' with message 'unauthorized' when i try to login a user or do anything
require ("parse-php-sdk-master/autoload.php");
use Parse\ParseObject;
use Parse\ParseQuery;
use Parse\ParseACL;
use Parse\ParsePush;
use Parse\ParseUser;
use Parse\ParseInstallation;
use Parse\ParseException;
use Parse\ParseAnalytics;
use Parse\ParseFile;
use Parse\ParseCloud;
use Parse\ParseClient;
ParseClient::initialize("secret","secret","secret");
ParseClient::setServerURL('https://serveraddress.herokuapp.com','parse');
I am using the most recent version of the php-sdk, an alternative server running the javascvript sdk, connects and works fine.