libauthentication:oauth1

Last commit made on 2017-06-26
Get this branch:
git clone -b oauth1 https://git.launchpad.net/libauthentication

Branch merges

Branch information

Name:
oauth1
Repository:
lp:libauthentication

Recent commits

5f24671... by Alberto Mardegan

OAuth1: reduce code duplication

The implementation of the new{Get,Post}Request() methods was mostly the
same.

cdd8ae1... by Alberto Mardegan

Examples: use oob authentication for Twitter

We didn't have any example using OOB.

edc88ce... by Alberto Mardegan

.gitignore: add qml precompiled files

30c605a... by Alberto Mardegan

Examples: add example with twitter upload from QML

884bd49... by Alberto Mardegan

OAuth1, AbstractAuthenticator: add newPostRequest() method

This is currently implemented for OAuth1 only.

eae08bb... by Alberto Mardegan

OAuth1: set Content-Type header on multipart requests

This change is not very important when sending the QHttpMultiPart object
to the QNetworkAccessManager, but will come handy when we implement the
XHR version of post(), given that XHR.send() is not aware of the message
being multipart.

cfae2ea... by Alberto Mardegan

OAuth1: authorization parameter passing doesn't depend on multipart

Whether the message is a multipart one should have very little effect on
how the OAuth authentication parameters are transmitted.

ad2ea73... by Alberto Mardegan

OAuth1: support sending files encoded with base64

This can be an effective workaround for QTBUG-61599 for those services
supporting base64 uploads, such as Twitter.

aed20c3... by Alberto Mardegan

Examples: add new example, to post photos to Flickr

393fb70... by Alberto Mardegan

OAuth1: add post() method

This is likely not yet complete, as it's been tested against Flickr
only.