How to write a channel.html file in Rails (for Facebook)

前端 未结 4 2056
醉梦人生
醉梦人生 2021-02-08 22:57

According to the FB SDK I must include a channel file with the appropriate headers.

Being a major NOOB and a Rails not PHP developer I have no idea how to do this.

相关标签:
4条回答
  • 2021-02-08 23:35

    Inside your controller:

    cache_expire = 1.year
    response.headers["Pragma"] = "public"
    response.headers["Cache-Control"] = "max-age=#{cache_expire.to_i}"
    response.headers["Expires"] = (Time.now + cache_expire).strftime("%d %m %Y %H:%I:%S %Z")
    render :layout => false, :inline => "<script src='//connect.facebook.net/en_US/all.js'></script>"
    
    0 讨论(0)
  • 2021-02-08 23:36

    Use the response.headers hash in your controller. Docs

    Example from your example

    cache_expire = 60*60*24*365
    response.headers["Pragma"] = "public"
    response.headers["Cache-Control"] = "max-age=#{cache_expire}"
    response.headers["Expires"] = ... # I'll leave this one to you.
                                      # (Or ask another Q.) 
                   # gmdate('D, d M Y H:i:s', time()+$cache_expire) . ' GMT');
    
    0 讨论(0)
  • 2021-02-08 23:38

    I got tired of polluting my routes.rb file in every facebook connected app so I wrapped a rack handler that gives the correct channel.html response in a Rails Engine and published it as a gem. You can simply include the 'fb-channel-file' gem in your Gemfile and it will be automatically mounted at /channel.html https://github.com/peterlind/fb-channel-file

    0 讨论(0)
  • 2021-02-08 23:38

    I simply added 'channel.html' to my public directory and inserted this one line in it:

    <script src="//connect.facebook.net/en_US/all.js"></script>
    
    0 讨论(0)
提交回复
热议问题