summaryrefslogtreecommitdiffabout
path: root/include/opkele/oauth/consumer.h
authorMichael Krelin <hacker@klever.net>2008-03-08 11:26:07 (UTC)
committer Michael Krelin <hacker@klever.net>2008-03-08 11:26:07 (UTC)
commit1d108d28c5c2bd55827021aef944a48421bfb3ef (patch) (unidiff)
tree51b38dffc4dc18536cebf1133b5dcba5aa74bfd6 /include/opkele/oauth/consumer.h
parentf953b073abbf9e58e5b2a46c6ddf65f57dec1fad (diff)
downloadlibopkele-1d108d28c5c2bd55827021aef944a48421bfb3ef.zip
libopkele-1d108d28c5c2bd55827021aef944a48421bfb3ef.tar.gz
libopkele-1d108d28c5c2bd55827021aef944a48421bfb3ef.tar.bz2
moving towards simplifying request-making.
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (limited to 'include/opkele/oauth/consumer.h') (more/less context) (show whitespace changes)
-rw-r--r--include/opkele/oauth/consumer.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/include/opkele/oauth/consumer.h b/include/opkele/oauth/consumer.h
index 9196297..eb4f753 100644
--- a/include/opkele/oauth/consumer.h
+++ b/include/opkele/oauth/consumer.h
@@ -13,3 +13,4 @@ namespace opkele {
13 enum oauth_method_t { 13 enum oauth_method_t {
14 oauth_auth_header, oauth_post_body, oauth_url_query 14 oauth_auth_header, oauth_post_body, oauth_url_query,
15 oauth_method_default = oauth_auth_header
15 }; 16 };
@@ -21,3 +22,4 @@ namespace opkele {
21 22
22 service_endpoint_t(const string& u,const string& sm,oauth_method_t om) 23 service_endpoint_t() : oauth_method(oauth_method_default) { }
24 service_endpoint_t(const string& u,const string& sm,oauth_method_t om=oauth_method_default)
23 : url(u), signature_method(sm), oauth_method(om) { } 25 : url(u), signature_method(sm), oauth_method(om) { }
@@ -67,3 +69,3 @@ namespace opkele {
67 69
68 void prepare_request( 70 http_request_t& prepare_request(
69 http_request_t& req, 71 http_request_t& req,
@@ -72,3 +74,3 @@ namespace opkele {
72 const token_t *t=0,const string& realm=""); 74 const token_t *t=0,const string& realm="");
73 void prepare_request( 75 http_request_t& prepare_request(
74 http_request_t& req, 76 http_request_t& req,
@@ -77,2 +79,6 @@ namespace opkele {
77 const token_t *t=0,const string& realm=""); 79 const token_t *t=0,const string& realm="");
80 http_request_t& prepare_request(
81 http_request_t& req,
82 const basic_fields& qf,const basic_fields& pf,
83 const token_t *t=0,const string& realm="");
78 84