diff -r 969092730d34 -r edb9dc8273d9 example/sampleplugin/sampleplugin.cpp --- a/example/sampleplugin/sampleplugin.cpp Thu Apr 15 15:40:08 2010 +0530 +++ b/example/sampleplugin/sampleplugin.cpp Thu Apr 22 15:18:37 2010 +0530 @@ -3,6 +3,8 @@ #include "sampleplugin.h" #include #include +#include +#include /** * Constructor with default argument @@ -86,7 +88,8 @@ // Get the oAuth keys from The Smf Server QMap keys; - m_util->getAuthKeys(keys, m_provider->pluginId()); + QString registrationToken = retrievePrivateRegToken(); + m_util->getAuthKeys(keys, registrationToken, m_provider->pluginId()); // Unable to get the tokens if(keys.isEmpty()) @@ -242,7 +245,7 @@ QMultiMap params; params.insert("method", "postComment"); params.insert("photoId", aImage.id().toAscii()); - params.insert("comment", aImage.comments().join(" ").toAscii()); + params.insert("comment", "excellent Himalaya"); QNetworkAccessManager::Operation type = QNetworkAccessManager::GetOperation; SmfSignatureMethod signMethod = HMAC_SHA1; @@ -253,6 +256,29 @@ } /** + * This function retrieves the registration token that was provided to Authentication App + * while authenticatiing user with the service + * + * Plugin source codes are not open source - so free to use anything they like + */ +QString SamplePlugin::retrievePrivateRegToken() + { + + /** + * This is a private implementation - + * implementer might choose to use registry to store/retrieve this token + * or to write encrypted (symmetric) token to a file kept at known dir + */ + QFile qf("/resource/data/sampleplugindata.dat"); + qf.open(QIODevice::ReadOnly); + QByteArray qba = qf.read(20); + qba.chop(5); + QString rs(qba.toBase64()); + return rs; + } + + +/** * Method to get the provider information * @return Instance of SmfProviderBase */ @@ -477,7 +503,6 @@ return ret; } - /* * Export Macro * plugin name : sampleplugin