Change temp credential test script to use POST instead of GET (more

useful for testing in general)
This commit is contained in:
Zach Copley 2010-10-07 11:56:49 -07:00
parent 8658e4f8c4
commit 9d5224e2b4

View File

@ -47,7 +47,7 @@ try {
$req = OAuthRequest::from_consumer_and_token( $req = OAuthRequest::from_consumer_and_token(
$testConsumer, $testConsumer,
null, null,
"GET", "POST",
$requestTokenUrl, $requestTokenUrl,
$params $params
); );
@ -56,6 +56,7 @@ try {
} catch (Exception $e) { } catch (Exception $e) {
// oh noez // oh noez
print $e->getMessage(); print $e->getMessage();
print "OAuth Request:\n";
var_dump($req); var_dump($req);
exit(1); exit(1);
} }
@ -93,5 +94,5 @@ function httpRequest($url)
) )
); );
return $request->get($url); return $request->post($url);
} }