How can I List messages on yahoo mail using Json RPC, I have used the code provided by yahoo http://developer.yahoo.com/mail/docs/user_guide/CredentialTheUser.html

here's the code To retrieve the folders on my yahoo mail

$jsonClient = new JsonRpcClient("$endPoint/jsonrpc", NULL);
$jsonClient->__setHeader(array('Content-Type: application/json','Accept: application/json', $oauthHeaderForJson));
print_r($jsonClient->ListFolders(new stdclass()));

To retrieve List of messages(With error)

 $jsonClient = new JsonRpcClient("$endPoint/jsonrpc", NULL);
    $jsonClient->__setHeader(array('Content-Type: application/json','Accept: application/json', $oauthHeaderForJson));
    print_r($jsonClient->ListMessages(new stdclass()));

but it show's an error "missing required fid", there should be a parameter on ListMessages indicating the fid:Inbox, but where should I put the param? I have tried almost everything, but no luck.

link|improve this question

54% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.