I used the YQL mail app originally,
the following queries didnt return an error, but returned a zero count
select * from ymail.messages
select * from ymail.folders
select * from social.updates where guid = me
the following query returns 1 which is myself
select * from social.profile where guid = me
the following query doesnt output anything i get an error message , specifically 3002
select * from search.web where query='Yahoo! Mail'
I checked my auth file, it is exactly like the yql example except it has my key and secret.
I looked at my auth and i only set updates and profiles, i didnt set yahoo mail. I set mail and these queries work
select * from social.profile where guid = me
select * from ymail.messages
select * from ymail.folders
BUT, this query still doesnt work
select * from social.updates where guid = me
I tried the following search query and I dont get any returns
select * from search.web where query='Yahoo! Mail'
Now, I was thinking, maybe the changes in yahoo pulse to yahoo profiles is doing it but the social.update query still works in the yql console? I have updates, status, meme, and mail permissions set. So I set the messenger permissions.
The following queries worked
select * from ymail.messages
select * from ymail.folders
select * from social.profile where guid = me
The following query didnt
select * from social.updates where guid = me
It retrieved nothing, which is not true, in the yql console this same query retrieves all my updates.
The following query returned a 3002 error, I searched online and didnt see anything for this error. Can you tell me what it means?
select * from search.web where query='Yahoo! Mail'
What are the right permissions to access all YQL tables, if that is possible?
Also, make sure you put in the documentation for the YQL example the right permission settings and also make sure to remind developers to go to their sharing page and disconnect prior versions of their app.