frankyue
frankyue

Reputation: 31

How to make ASIHTTPRequest support oauth2?

I need to use ASIHTTPRequest , but it is not support oauth2 protocol .If there is a way to make ASIHTTPRequest to support oauth2?

Upvotes: 1

Views: 1174

Answers (2)

Jens Kohl
Jens Kohl

Reputation: 5969

You should take a look at What's the best iOS OAuth2 framework question here on StackOverflow. There MattDiPasquale mentioned the FROAuth2Request project on github which does exactly what you're looking for. It adds OAuth2 support to ASIHTTPRequest.

Upvotes: 1

Christian Beer
Christian Beer

Reputation: 2025

OAuth is not a protocol as, for example, HTTP or FTP, but builds ontop of HTTP and adds authentication. So what you're looking for is a implementation of OAuth (like https://github.com/thekarladam/MPOAuth) ontop of ASIHTTPRequest.

A short googling brought me to this project on github: https://github.com/mdales/asi-http-request . Maybe it's that what you're looking for? I don't know it, so I can't tell if it's good.

Upvotes: 0

Related Questions