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
1 changed files with 3 additions and 2 deletions

View File

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