1
0
Fork 0
mirror of git://git.psyced.org/git/psyced synced 2024-08-15 03:25:10 +00:00

reset in fetch could break some apps.. other minor reorg

This commit is contained in:
psyc://psyced.org/~lynX 2010-02-23 16:15:44 +01:00
parent b48557c67a
commit f48a7380cd
7 changed files with 42 additions and 40 deletions

View file

@ -52,7 +52,7 @@ varargs void fetch(object ua, string url, string method, mapping oauth) {
void parse_request_token(string body, mapping headers) {
P3((">> oauth:parse_request_token(%O, %O)\n", body, headers))
mapping params = ([]);
parse_query(params, body);
url_parse_query(params, body);
request_token = params["oauth_token"];
request_secret = params["oauth_token_secret"];
if (strlen(request_token) && strlen(request_secret)) {
@ -67,7 +67,7 @@ void parse_request_token(string body, mapping headers) {
void parse_access_token(string body, mapping headers) {
P3((">> oauth:parse_access_token(%O, %O)\n", body, headers))
mapping params = ([]);
parse_query(params, body);
url_parse_query(params, body);
access_token = params["oauth_token"];
access_secret = params["oauth_token_secret"];
if (strlen(access_token) && strlen(access_secret)) {