alaingilbert / Turntable-API

Allows you to create bots for turntable.fm
http://alaingilbert.github.com/Turntable-API/
MIT License
317 stars 97 forks source link

Bookmarklet broken? #131

Closed TheHolyWaffle closed 11 years ago

TheHolyWaffle commented 11 years ago

When I use the bookmarklet to find out my auth it only gives me an 24 character long string instead of a 40 character long one. Is this normal?

TheHolyWaffle commented 11 years ago

Apparently the "auth+live+" seems to be obsolete when making a new bot.

alaingilbert commented 11 years ago

In fact, if you connect with facebook, you should have the auth+live+..., but if you create your account with an email address, your auth token will be shorter.

TheHolyWaffle commented 11 years ago

I think it wouldn't harm anybody if you put this in the readme.md :)

technobly commented 11 years ago

You can actually edit the readme for him :P but yes I agree... when I started coding bots that damn auth+live+ thing vs no auth+live+ really confused me.

MikeWills commented 11 years ago

Guilty here too... I keep forgetting to update it. How do you pull the most recent edition into my fork so I can update it?

technobly commented 11 years ago

Pull in upstream changes

If the original repo you forked your project from gets updated, you can add those updates to your fork by running the following code:

git fetch upstream
# Fetches any new changes from the original repo

git merge upstream/master
# Merges any changes fetched into your working files
alaingilbert commented 11 years ago

If you got the package with npm, you just have to run npm again ! npm install ttapi

sneakyness commented 11 years ago

This got me too, glad I found this closed issue.

MikeWills commented 11 years ago

@alaingilbert I am talking about my fork on Github, updating that.