Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OAuth authentication for Google API with Qt

Tags:

c++

oauth

qt

api

I'm trying to get authenticated for receiving and publishing Google Buzz-es from a Qt 4.6(c++) application. I'm looking for a cross-platform solution.

Could anyone provide some working solution for this purpose?

like image 997
Vladimiroff Avatar asked Jun 12 '10 12:06

Vladimiroff


2 Answers

You can also try kQOAuth which is a new Qt library for doing OAuth authentication. It will let you do the user authentication very easily too, if you like.

Supports OAuth 1.0 and HMAC-SHA1. No external dependencies.

http://www.johanpaul.com/blog/2010/10/introducing-kqoauth-easy-and-powerful-oauth-library-for-qt/

like image 165
Johan Paul Avatar answered Oct 27 '22 23:10

Johan Paul


I couldn't find any either, so I made one: https://github.com/pipacs/steps/tree/master/o2 . Based on KQOAuth, tested with Google Docs.

like image 39
pipacs Avatar answered Oct 27 '22 23:10

pipacs