如何使用 Yahoo Pipes 设置自定义标头?

发布于 2024-09-17 19:19:14 字数 401 浏览 6 评论 0原文

我正在做一个管道来从私人博客作者的博客中检索 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回眸一遍 2024-09-24 19:19:14

一种解决方案是创建一个 yql 表,例如 这是我自己制作的,并将其与 yql 查询一起使用,例如:

use "https://sites.google.com/site/myopentables/html.get.xml?attredirects=0&d=1" as html.get;
select * from html.get where url="someurl" and authorization="auth string";

One solution is to create a yql-table like this one made by myself and use it with a yql query like:

use "https://sites.google.com/site/myopentables/html.get.xml?attredirects=0&d=1" as html.get;
select * from html.get where url="someurl" and authorization="auth string";
李不 2024-09-24 19:19:14

您仍然需要编写自己的 YQL 数据表,但我建议您使用内置的 YQL paramType="header",而不是 Pedro 的答案。

<key id="Authorization" as="authorization" type="xs:string" paramType="header" required="false" />

来自关于属性的 YQL 文档 to :

  • header: 将 id 及其值作为 id: value 作为 HTTP 标头添加到 URL 请求。

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".

<key id="Authorization" as="authorization" type="xs:string" paramType="header" required="false" />

From the YQL documentation about the attributes to :

  • header: Add the id and its value as a id: value as an HTTP header to the URL request.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文