2011-10-25から1日間の記事一覧

RailsのAssetHostingWithMinimumSslプラグイン

諸事情からhttps応答できないため、アセットを無理矢理httpで提供するために使ったプラグイン。 config.action_controller.asset_host = AssetHostingWithMinimumSsl.new( "http://assets%d.example.com", # will serve non-SSL assetts on http://asse…

FacebookのJavaScript SDKでいいねボタンのクリックにコールバックできるんだね

「いいねボタンといえばiframe」という頭でいるので、なかなかJavaScript SDKを使うという発想にならない。 http://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/ FB.Event.subscribeでイベントをハンドリングできるので、認証や…

FacebookのGraph APIを使って任意のPageオブジェクトをいいね出来るのか?

Facebook内のIDを持ったオブジェクトであれば、どんなtypeであってもGraph APIを使っていいね出来ると思ってました。 Facebook error 400: OAuthException: (#3) Application does not have the capability to make this API call. 上記は、/PAGE_ID/likesに…