Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want to make Rails Chat like application and I am going through some problems
I went to this website Realtime Mini-Chat with Rails and Faye
and I have downloaded the source code
After removing some errors, I got the index page where you have to login via fb or twitter, but when someone clicks Fb link it throws an error
"The parameter app_id is required"
Can anybody help me with this problem?
Ok i got it,
its with the gem 'omniauth-facebook' gem,
for that i have to register on developers.facebook.com and register their
Facebook need
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I am very new to ASP.net. I am trying to build a webform that searches an artist and displays their top 5 songs from spotify. My biggest problem as of now is figuring out where to put the code and what code to use so that I can receive this data from spotify. I have already made a spotify developer account with an app. I have the client ID and Client Secret. I think I need to figure out a way to authenticate. Any help or websites that could point me in the right direction would be greatly appreciated.
Why not read the actual Spotify API docs, it will have everything you need.
Just looking at https://developer.spotify.com/ the entire top of the page is trying to push you to the docs and I'm even seeing they provide web console to test out code and ideas.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
<img src="img/twitter-button.png" alt="">
I used above code for twitter share in my website. In this method have issue in redirect.
How to fix this issue?
I need solution for mobile website
Well as I understand your question It's flexible enough to redirect you URL after tweet Check out below URL same question there:
Callback after posting message to Twitter
For all available options in this approach:
https://dev.twitter.com/web/tweet-button/web-intent
I would recommend here that you should use open in another window approach see below link:
https://dev.twitter.com/web/intents
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I'm very new to rails and have very little experience with programming in general. I was given the project of creating a simple rails app that is able to check a users Instagram when given their User ID and Password. My question in general is how do I approach this? Where do I start and essentially how do I do this?
Well, you should never ask for the user's password for an external service (no sane user will give it to you). Instead use omniauth (omniauth-instagram, specifically) to get an access_token and then simply use the Instagram ruby gem (https://github.com/Instagram/instagram-ruby-gem) to get their timeline.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm trying to look through different APIs for bitcoin transactions, but havn't been able to find a clear path for what I'm trying to achieve. I was hoping some one could explain to me an easy way to send bitcoins based on the entered amount from the user on a form. I'm going to be using ruby on rails to create the site.
With ruby on rails its very simple. Coinbase has its own gem: gem 'coinbase' which you can add to your gem file. Then simply look in the docs (https://coinbase.com/api/doc) and the source code (https://github.com/coinbase/coinbase-ruby) of the gem to find what you need to do. Hope this helps!
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am working on a rails app and i want to add a chat functionality just like facebook. does anyone know how i can go about it. i am kinda new to rails so the task is quit difficult form me to accomplish
Messaging is a very difficult thing to do. I would stay away from it if you're new to Rails or web programming in general.
Otherwise, if you're up for a challenge, check out what I've answered on this question.