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.