在简单的 http 请求中嵌入 URL
Embed a URL in a simple http request
我正在发出一个简单的 http 请求,看起来像这样:
https://example.com/api/chat.postMessage?text=This%20should%20be%20a%20link
它的作用是向我们的内部聊天服务发布一条消息。 text=
是发布到聊天频道的文本。我想要的是在此处嵌入一个 hyperlink,以便在发布消息时,"This should be a link" 实际上会 link 到一个 http link。这是可能吗?谢谢!
看起来您正在使用 Slack API?以下两个链接可能会有帮助:
要对以下文本进行编码...
"go to http://www.google.com/"
...您似乎会向以下 URL 发送请求:
.../api/chat.postMessage?text=go%20to%20http%3A%2F%2Fwww.google.com%2F
我正在发出一个简单的 http 请求,看起来像这样:
https://example.com/api/chat.postMessage?text=This%20should%20be%20a%20link
它的作用是向我们的内部聊天服务发布一条消息。 text=
是发布到聊天频道的文本。我想要的是在此处嵌入一个 hyperlink,以便在发布消息时,"This should be a link" 实际上会 link 到一个 http link。这是可能吗?谢谢!
看起来您正在使用 Slack API?以下两个链接可能会有帮助:
要对以下文本进行编码...
"go to http://www.google.com/"
...您似乎会向以下 URL 发送请求:
.../api/chat.postMessage?text=go%20to%20http%3A%2F%2Fwww.google.com%2F