example/TwitterAuthApp/inc/keys.h
changeset 26 83d6a149c755
equal deleted inserted replaced
25:a180113055cb 26:83d6a149c755
       
     1 /*
       
     2  * keys.h
       
     3  *
       
     4  *  Created on: Jul 16, 2010
       
     5  *      Author: satishkk
       
     6  */
       
     7 
       
     8 #ifndef KEYS_H_
       
     9 #define KEYS_H_
       
    10 
       
    11 #define EMULATORTESTING
       
    12 
       
    13 static const QString kApiKey = "skvMOZYSO3Smxab1HRfGRg";
       
    14 static const QString kConsumerKey = "skvMOZYSO3Smxab1HRfGRg";
       
    15 static const QString kConsumerSecret = "k2rP2TLeFZlUONXCkg6rR9PWdl3YKrE1PFXzHmnZgx4";
       
    16 
       
    17 static const QString kRequestTokenUrl = "https://api.twitter.com/oauth/request_token";
       
    18 static const QString kAccessTokenUrl = "https://api.twitter.com/oauth/access_token";
       
    19 static const QString kAuthorizeUrl = "https://api.twitter.com/oauth/authorize";
       
    20 
       
    21 static const QString kBase = "https://api.twitter.com/oauth/authorize";
       
    22 #endif /* KEYS_H_ */