diff options
Diffstat (limited to 'rest/oauth-proxy-private.h')
-rw-r--r-- | rest/oauth-proxy-private.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/rest/oauth-proxy-private.h b/rest/oauth-proxy-private.h index 6e44619..e3943a9 100644 --- a/rest/oauth-proxy-private.h +++ b/rest/oauth-proxy-private.h @@ -26,11 +26,18 @@ (G_TYPE_INSTANCE_GET_PRIVATE ((o), OAUTH_TYPE_PROXY, OAuthProxyPrivate)) typedef struct { + /* Application "consumer" keys */ char *consumer_key; char *consumer_secret; + /* Authorisation "user" tokens */ char *token; char *token_secret; + /* How we're signing */ OAuthSignatureMethod method; + /* OAuth 1.0a */ gboolean oauth_10a; char *verifier; + /* OAuth Echo */ + gboolean oauth_echo; + char *service_url; } OAuthProxyPrivate; |