Skip to content

Commit 7d01515

Browse files
Update token url
Now using: https://api.slack.com/web#authentication
1 parent 6a67aa8 commit 7d01515

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ _Note:_ You must obtain a token for the user/bot. You can find or generate these
3434
import time
3535
from slackclient import SlackClient
3636

37-
token = "xoxp-28192348123947234198234" # found at https://api.slack.com/#auth)
37+
token = "xoxp-28192348123947234198234" # found at https://api.slack.com/web#authentication
3838
sc = SlackClient(token)
3939
print sc.api_call("api.test")
4040
print sc.api_call("channels.info", channel="1234567890")
@@ -46,7 +46,7 @@ print sc.api_call("channels.info", channel="1234567890")
4646
import time
4747
from slackclient import SlackClient
4848

49-
token = "xoxp-28192348123947234198234"# found at https://api.slack.com/#auth)
49+
token = "xoxp-28192348123947234198234"# found at https://api.slack.com/web#authentication
5050
sc = SlackClient(token)
5151
if sc.rtm_connect():
5252
while True:

0 commit comments

Comments
 (0)