00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef FACEBOOKCOMMON_H
00023 #define FACEBOOKCOMMON_H
00024
00025 #include <QString>
00026
00027 const QString ERROR = "Error";
00028
00029
00030 const double FACEBOOK_LOGINPAGE_FONT_SIZE = 1.2;
00031
00032
00033 const QString SESSION_KEY = "session_key";
00034 const QString USER_ID = "uid";
00035 const QString EXPIRES = "expires";
00036 const QString SESSION_SECRET = "secret";
00037 const QString SIGNATURE = "sig";
00038
00039
00040 const QString USERNAME = "username";
00041
00042 const QString LOGIN_SUCCESS_REPLY = "http://www.facebook.com/connect/login_success.html";
00043 const QString LOGIN_FAILURE_REPLY = "https://login.facebook.com/login.php?login_attempt=";
00044 const QString LOGIN_PAGE = "http://www.facebook.com/login.php?api_key=";
00045
00046 #endif // FACEBOOKCOMMON_H