Fix some compilation issues.

pull/40/head
LemonBoy 2012-06-10 19:50:26 +02:00
parent b0c0353fdb
commit 6157dc57f3
1 changed files with 10 additions and 7 deletions

View File

@ -23,6 +23,7 @@
#include "Json.hh"
#include "http/CurlAgent.hh"
#include "http/Header.hh"
#include "util/log/Log.hh"
// for debugging
@ -62,9 +63,10 @@ void OAuth2::Auth( const std::string& auth_code )
http::JsonResponse resp ;
http::CurlAgent http ;
http::Header hdr ;
DisableLog dlog( log::debug ) ;
http.Post( token_url, post, &resp ) ;
http.Post( token_url, post, &resp, hdr ) ;
Json jresp = resp.Response() ;
m_access = jresp["access_token"].Str() ;
@ -99,9 +101,10 @@ void OAuth2::Refresh( )
http::JsonResponse resp ;
http::CurlAgent http ;
http::Header hdr ;
DisableLog dlog( log::debug ) ;
http.Post( token_url, post, &resp ) ;
http.Post( token_url, post, &resp, hdr ) ;
m_access = resp.Response()["access_token"].Str() ;
}