Entries from 2012-05-01 to 1 month

Google OAuth認証をローカル開発環境でテストした際のメモ

最近、ドットインストールで楽しくプログラミングの勉強をしているのだが、http://dotinstall.com/lessons/google_connect_phpで少し躓いた所があったのでメモしておく。 まず、Webサービスを開発する演習の場合、私はMac OS X上のVirtualBoxにCent OSをイン…

How to solve “Failed to validate oauth signature and token” error message on Twitter Oauth.

You would receive this error message from Twitter when you try to get request token. In this case, you can solve the error message if you make your system clock be accurate.

How to set up ntp on Cent OS.

1. Install ntp. # yum install ntp 2. Turn on service. # /sbin/chkconfig ntpd on 3. Synchronize the system clock. # /sbin/ntpdate pool.ntp.org 4. Start ntp. # /etc/init.d/ntpd start