I'm trying to write an application in C++ that uses the Ubuntu One OAuth token stored in the Gnome Keyring, but I can't find any documentation on either the Gnome or Ubuntu One developer sites that tell me how to do this.
The Ubuntu One site says that all requests to the Ubuntu One service must be signed with a valid Ubuntu One OAuth token, but it doesn't say how to go about this.
The Gnome API reference for the Keyring API simply runs off a list of functions without any context or, more importantly, the #include directive that I'm supposed to use to get those functions into my program.
Does anyone know where I can find any documentation that helps me access the Ubuntu One OAuth token?
man 2 <yourfunction>and see in which header files it is. – queueoverflow Jun 15 '11 at 16:38