Hello,
Try this code for giving clientCapabilities.
string sessions_realm = "developer.messenger.yahooapis.com/v1/session";
string postdatas = "{\"presenceState\":0,\"presenceMessage\":\"my login status message\",\"clientCapabilities\":[{\"clientCapability\":\"fileXfer\"}]}";//,\"fileSize\":300
string urls = "http://" + sessions_realm + "?&oauth_consumer_key=" + oauth_consumer_key + "&oauth_signature_method=" + oauth_signature_method +
"&oauth_nonce=" + oauth_nonce + "&oauth_timestamp=" + oauth_timestamp + "&oauth_signature=" + oauth_signature + "&oauth_version=" +
oauth_version + "&oauth_token=" + oauth_token;//+ "¬ifyServerToken=" +
string fileSessionId_request = fetchURL(urls, true, postdatas);
Thanks
i don;t have session_managenet function.
I have v1/session in sign_on function. ( where yes, i can put clientcapability ).
can you please give me an example? I still have error 400 from fttp response.