结合 yql auth.basic 和 ymail.messages 来获取 yahoo 电子邮件?
我有这个:
select * from auth.basic
where url="mail.yahoo.com"
and username="username"
and password="password"
还有这个:
select * from ymail.messages where numMid='3'
我可以以某种方式将它们结合起来吗?我想你能想象我为什么想要这个吗?
I have this:
select * from auth.basic
where url="mail.yahoo.com"
and username="username"
and password="password"
and this:
select * from ymail.messages where numMid='3'
Can I somehow combine them? I think you can imagine why I want this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本身份验证不适用于此表。 ymail.messages 表支持 OAuth,因此您可以使用 http://developer.yahoo.com/ 中描述的 3 条腿 oauth oauth/ 然后使用 oauth Authorization header 从这些表中获取邮件数据。
雅虎确实支持几种不同的语言,包括 java 和 php。如果您需要帮助,请告诉我们。
The basic auth wont work with this table. The ymail.messages table supports OAuth so you can use 3 legged oauth described at http://developer.yahoo.com/oauth/ and then use the oauth Authorization header to get the mail data from these tables.
Yahoo does support a couple of different languages including java and php. Let us know if you need a hand at that.