updated client key and ID

pull/40/head
Matchman Green 2012-04-26 02:14:45 +08:00
parent 6fe956d22c
commit 9616194cfa
2 changed files with 3 additions and 3 deletions

View File

@ -27,8 +27,8 @@
namespace gr {
const std::string token_url = "https://accounts.google.com/o/oauth2/token" ;
const std::string client_id = "472848141496.apps.googleusercontent.com" ;
const std::string client_secret = "hmBLwnBSU24Wombgjbffs6DS" ;
const std::string client_id = "22314510474.apps.googleusercontent.com" ;
const std::string client_secret = "bl4ufi89h-9MkFlypcI7R785" ;
OAuth2::OAuth2( const std::string& refresh_code ) :
m_refresh( refresh_code )

View File

@ -36,7 +36,7 @@ int main( int argc, char **argv )
case 'a' :
{
std::cout <<
OAuth2::MakeAuthURL( "472848141496.apps.googleusercontent.com" ) << std::endl ;
OAuth2::MakeAuthURL( "22314510474.apps.googleusercontent.com" ) << std::endl ;
return 0 ;
}