File indexing completed on 2025-01-19 03:55:39

0001 #ifndef O1UPWORK_H
0002 #define O1UPWORK_H
0003 
0004 #include "o1.h"
0005 
0006 class O1Upwork: public O1 {
0007     Q_OBJECT
0008 
0009 public:
0010     explicit O1Upwork(QObject *parent = 0) : O1(parent) {
0011         setRequestTokenUrl(QUrl("https://www.upwork.com/api/auth/v1/oauth/token/request"));
0012         setAuthorizeUrl(QUrl("https://www.upwork.com/services/api/auth"));
0013         setAccessTokenUrl(QUrl("https://www.upwork.com/api/auth/v1/oauth/token/access"));
0014     }
0015 };
0016 
0017 #endif // O1UPWORK_H
0018