Facebook Open Graph from Rails Heroku

后端 未结 3 842
广开言路
广开言路 2021-02-06 11:13

I\'ve been fighting this problem all day, and could really need some input.

I have a Rails application (3.1.3) running on Heroku Cedar, trying to publish some Facebook O

3条回答
  •  鱼传尺愫
    2021-02-06 11:25

    Solved it!

    Really stupid actually. I had only one web dyno in my Heroku application. Since my only web dyno was doing the Facebook API call, there was no dyno to respond to the Facebook callback. You need at least 2 to get this to work.

    The reason the code worked in heroku console was simply because the web dyno was not busy handling my request.

    I might push that code to a work queue in the future as it seems more appropriate and let a worker dyno handle the Facebook publishing.

提交回复
热议问题