Programing

브라우저에서 채널을 열기위한 Slack URL

lottogame 2020. 8. 20. 19:25
반응형

브라우저에서 채널을 열기위한 Slack URL


이 iTunes URL은 iTunes에서 The Hitchhiker 's Guide to the Galaxy를 엽니 다.

itmss : //itunes.apple.com/us/audiobook/hitchhikers-guide-to-galaxy/id315596797

이 Spotify URL은 Spotify의 자손별로 모두 열립니다.

spotify : track : 22feF2sbtGydtvx1OeLSih

Slack에는 링크에서 Slack 앱의 #channel을 여는 URL 체계가 있나요?

회사의 다른 사람들이 사용할 수 있도록 우리가 사용하는 Slack #channel에 연결할 수있는 링크를 팀 사이트에 추가하고 싶습니다.


Slack 앱에서 특정 채널을 여는 URI는 다음과 같습니다.

slack://channel?id=<CHANNEL-ID>&team=<TEAM-ID>

팀 및 채널의 ID를 가져 오려면 Slack API의 다음 리소스가 필요할 수 있습니다.

다음 은 Slack전체 문서입니다.


물론 넌 할 수있어:

https : // <조직> .slack.com / messages / <채널> /

예 : https://tikal.slack.com/messages/general/ (물론 액세스하려면 팀의 일원이어야 함)


대화 내에서 채널 참조

Slack 대화에서 채널에 대한 클릭 가능한 참조를 만들려면 #채널 이름을 입력 한 다음 입력 하면됩니다. 예 : #general.

채널 언급 # 개

Slack UI를 통해 채널 링크를 가져 오려면

채널 URL을 외부에서 공유하려면 채널 이름을 Control- 클릭 (Mac)하거나 마우스 오른쪽 버튼으로 클릭 (Windows)하여 해당 링크를 가져올 수 있습니다.

채널의 URL 잡기

링크는 다음과 같습니다.

https://yourteam.slack.com/messages/C69S1L3SS

이 링크는 채널 이름을 변경하더라도 변경되지 않습니다. 따라서 채널 이름에 기반한 링크보다이 링크를 사용하는 것이 좋습니다.

채널 이름을 기반으로 채널의 URL을 작성하려면

https://yourteam.slack.com/channels/<channel_name>

Opening the above URL from a browser would launch the Slack client (if available) or open the slack channel on the browser itself.

To compose a URL for a direct message (DM) channel to a user

https://yourteam.slack.com/channels/<username>

You can use

slack://

in order to open the Slack desktop application. For example, on mac, I've run:

open slack://

from the terminal and it opens the Mac desktop Slack application. Still, I didn't figure out the URL that should be used for opening a certain team, channel or message.


When I tried yorammi's solution I was taken to Slack, but not the channel I specified.

I had better luck with:

https://<organization>.slack.com/messages/#<channel>/

and

https://<organization>.slack.com/messages/<channel>/details/

Although, they were both still displayed in a browser window and not the app.

참고 URL : https://stackoverflow.com/questions/32146706/slack-url-to-open-a-channel-from-browser

반응형