StockTwits is a real-time social network for investors and traders. Users can post messages and share ideas to the community, as they research the markets and manage their investments. Their API is publicly documented on their developer website: https://stocktwits.com/developers
0
votes
1answer
31 views
Stocktwits Symbols filter flag throwing errors
I'm currently trying to integrate the Stocktwits symbols multicall api into my website. Using ajax jsonp, I can indeed get it working and throw flags such as limit, but whenever I try to use the ...
-1
votes
1answer
28 views
Stocktwits API Authentication invalid/unknown client error
I'm using these docs to figure out how to get stocktwits oauth to work:
http://stocktwits.com/developers/docs/authentication
http://stocktwits.com/developers/docs/api#oauth-authorize-docs
Yes, I ...
0
votes
1answer
17 views
Differentiating between username and userid in widget
I'm noticing issues with widgets displaying the wrong data for users whose username starts with a number. The widget looks like it is treating them as if it is the user id.
Is there a way to ...
0
votes
1answer
45 views
how to use stocktwits library?
I am building a stocktwits app in Ruby. I want to retrieve data through Stocktwits.com API. I found this library on github: https://github.com/jesseyoungmann/omniauth-stocktwits. But i am a newbie to ...
1
vote
1answer
53 views
Implementing the StockTwits Widget over SSL without warnings
Trying to use the StockTwits Widget in a web page that is (and must remain) served over SSL.
Since the widget-loader.min.js script link was being called via http, I copied the code to our domain so ...
0
votes
1answer
62 views
php access to stocktwits api
Is there anybody that succeeded in calling API methods from within a PHP script?
What I'm bassicaly trying to do is use my ST account to let a PHP script post on my behalf.
I got stuck with the ...
3
votes
2answers
501 views
Invalid and/or missing SSL certificate
I'm trying to build a datastore on Google App Engine to collect some stream data off of StockTwits for a bunch of companies. I'm basically replicating one I did with Twitter, but it's giving me an ...
0
votes
2answers
76 views
How can I get Stocktwits access_token in Rails app?
I need help with problem. I have website integrated with Stocktwits using omniauth-stocktwits gem. I want to use Stocktwits API to fetch commentary stream. So, I need access_token!
After user ...
0
votes
1answer
70 views
Strange Error with OmniAuth, AWS S3 and omniauth-stocktwits
I have a rails app using omniauth for user authentication with facebook. twitter and google. I've add one more provider StockTwits, with gem omniauth-stocktwits. And now my application cant' start ...
2
votes
2answers
165 views
Stocktwits API - AuthorizationCodeGrant HttpResponseException: 400 Bad Request
After Step 1 of the oauth2 dance I can retreive a code in the redirect URL. This works fine. But then,
I've got an 'com.google.api.client.http.HttpResponseException: 400 Bad Request' error
trying to ...
1
vote
1answer
67 views
Multiple user stream to one StockTwits widget
Is it possible to aggregate multiple user stream into a StockTwits widget or is it limited to one ?
0
votes
1answer
30 views
Dynamic Profile URL
Can the API provide a URL that retrieves a user's latest avatar.
Right now the initial OAuth call gives us the static URL for the avatar at that time. If the user changes their avatar later on, the ...
1
vote
1answer
82 views
Is there a StockTwits User Profile API endpoint?
Specifically, a call I can make to get all metadata about a user's profile?
curl -XGET http://api.stocktwits.com/api/2/user.json?username=bgajdero
This would return a JSON string with their id, ...
0
votes
1answer
193 views
How can I authenticate my calls to the StockTwits API?
I'm building a StockTwits app in Javascript.
I'm looking at the API documentation on OAuth http://stocktwits.com/developers/docs/authentication but confused about how to complete the client-side ...