You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In theory, I should be able to send links using the format <http://example.com|Name of site> which is supposed to turn into a hyperlink with my chosen text to the provided URL. (See https://api.slack.com/docs/message-formatting - which is linked from the RTM API docs page under "formatting messages".)
In practice, this is displaying exactly as is. It seems that the string is getting encoded somewhere (e.g. < becomes <), but I can't for the life of me find what's doing this in your source. Any tips on tracking this down and/or bypassing it?
The text was updated successfully, but these errors were encountered:
The RTM API only supports posting simple messages formatted using our default message formatting mode. It does not support attachments or other message formatting modes. To post a more complex message as a user clients can call the chat.postMessage Web API method with as_user set to true.
So I think you can bypass this by using the chat.postMessage Web API in order to format your message properly.
In theory, I should be able to send links using the format
<http://example.com|Name of site>
which is supposed to turn into a hyperlink with my chosen text to the provided URL. (See https://api.slack.com/docs/message-formatting - which is linked from the RTM API docs page under "formatting messages".)In practice, this is displaying exactly as is. It seems that the string is getting encoded somewhere (e.g.
<
becomes<
), but I can't for the life of me find what's doing this in your source. Any tips on tracking this down and/or bypassing it?The text was updated successfully, but these errors were encountered: