Files
CocoaTweet/src/cocoatweet/api/oauth1/authorize.h
T
2022-04-23 04:55:43 +09:00

20 lines
535 B
C++

#ifndef COCOATWEET_API_OAUTH1_AUTHORIZE_H
#define COCOATWEET_API_OAUTH1_AUTHORIZE_H
#include <cocoatweet/api/interface/httpPost.h>
namespace CocoaTweet::API::OAuth1{
class Authorize: public CocoaTweet::API::Interface::HttpPost {
public:
Authorize();
void oauthToken(const std::string& _oauthToken);
void forceLogin(const bool _forceLogin);
void screenName(const std::string& _screenName);
const std::string process(std::weak_ptr<CocoaTweet::Authentication::AuthenticatorBase> __unused__) ;
};
}
#endif