如何使用 Yahoo Pipes 设置自定义标头?
我正在做一个管道来从私人博客作者的博客中检索 RSS 内容。 管道首先向 https://www.google.com/accounts/ClientLogin 获取身份验证令牌。我为此使用 YQL(select * from htmlpost where url="https://www.google.com/accounts/ClientLogin" 和 postdata="Email=...
)。 问题是,在检索网络内容时,如何设置名为“Authenticate”的自定义标头,其中包含身份验证令牌? 我对 YQL 和雅虎管道都没有经验。我相信我正在尝试的事情是不可能的。有什么想法吗?
I'm doing a pipe to retrieve RSS content from a private blogger's blog.
The pipe first send a POST request to https://www.google.com/accounts/ClientLogin to get the Auth token. I use YQL for this (select * from htmlpost where url="https://www.google.com/accounts/ClientLogin" and postdata="Email=...
).
The question is, how could I set a custom header named "Authenticate" with the Auth token inside when retrieving the content of a web?
I'm not experienced in YQL neither in yahoo pipes. I believe that what I'm trying is not possible. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种解决方案是创建一个 yql 表,例如 这是我自己制作的,并将其与 yql 查询一起使用,例如:
One solution is to create a yql-table like this one made by myself and use it with a yql query like:
您仍然需要编写自己的 YQL 数据表,但我建议您使用内置的 YQL paramType="header",而不是 Pedro 的答案。
来自关于属性的 YQL 文档 to :
You would still have to write your own YQL datatable but instead of Pedro's answer I would suggest that you use YQL's built in paramType="header".
From the YQL documentation about the attributes to :