Skip to content

Commit

Permalink
Update token url
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquincasares committed Oct 8, 2015
1 parent 6a67aa8 commit 7d01515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ _Note:_ You must obtain a token for the user/bot. You can find or generate these
import time
from slackclient import SlackClient

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

token = "xoxp-28192348123947234198234"# found at https://api.slack.com/#auth)
token = "xoxp-28192348123947234198234"# found at https://api.slack.com/web#authentication
sc = SlackClient(token)
if sc.rtm_connect():
while True:
Expand Down

0 comments on commit 7d01515

Please sign in to comment.