Possible Duplicate:
What doesinvalid initialization of non-const reference
mean?
What does this error message mean?
invalid initialization of non-constant reference of the type »std::basic_string<char>&« of R-value of type »std::basic_string<char>&«
The error code:
void Dropbox_pluginAPI::acquireAccessToken(std::string &accessToken, std::string &accessTokenSecret)
{
client->aqcuireAccessToken(accessToken,accessTokenSecret);
}