備忘録
ローディングジェネレーター
http://ajaxload.info/
2012年8月16日木曜日
2012年8月12日日曜日
↓↓ すいません m(_ _)m これ間違いでした ↓↓
その後、表示されなくなりました。。。
Google Adwords広告の傾向でわかったことがあったので、共有。
例えば、あるキーワードを1クリック50円で買ってて、
でも平均クリック単価が20円だったとします。
そこで、1クリック当たりのMAX金額を50円から25円に変更したとします。
するとおそらく多くの場合、単価が安すぎるということで広告が表示されなくなり、
予算を消化できなくなるはずです。
しかし、そのまま何もせずに7日待てば、再び広告が表示されるようになります。
これによって僕の場合、同じ予算で従前の3倍のクリック数を獲得することが出来ました。
焦らし、待つ。
焦らし、待つ。
焦らし、待つ。
その後、表示されなくなりました。。。
Google Adwords広告の傾向でわかったことがあったので、共有。
例えば、あるキーワードを1クリック50円で買ってて、
でも平均クリック単価が20円だったとします。
そこで、1クリック当たりのMAX金額を50円から25円に変更したとします。
するとおそらく多くの場合、単価が安すぎるということで広告が表示されなくなり、
予算を消化できなくなるはずです。
しかし、そのまま何もせずに7日待てば、再び広告が表示されるようになります。
これによって僕の場合、同じ予算で従前の3倍のクリック数を獲得することが出来ました。
焦らし、待つ。
焦らし、待つ。
焦らし、待つ。
2012年8月11日土曜日
Facebook APIでの友達リストの取得方法
// 友達リスト取得
$ary01 = $facebook->api('/me/friends');
// 名前
$ary01['data'][0]['name'];
http://developers.facebook.com/docs/reference/api/FriendList/
ちなみに自分の情報の取得方法
// 自分プロフィールを取得
$ary02 = $facebook->api('/me');
// 名前
$ary02['name'];
http://developers.facebook.com/docs/reference/api/user/
// 友達リスト取得
$ary01 = $facebook->api('/me/friends');
// 名前
$ary01['data'][0]['name'];
http://developers.facebook.com/docs/reference/api/FriendList/
ちなみに自分の情報の取得方法
// 自分プロフィールを取得
$ary02 = $facebook->api('/me');
// 名前
$ary02['name'];
http://developers.facebook.com/docs/reference/api/user/
Facebookアプリのscopeに設定できるパーミッション一覧
http://developers.facebook.com/docs/authentication/permissions/#basic_info
http://developers.facebook.com/docs/authentication/permissions/#basic_info
User and Friends Permissions
User permission | Friends permission | Description |
---|---|---|
user_about_me | friends_about_me | Provides access to the "About Me" section of the profile in the about property |
user_activities | friends_activities | Provides access to the user's list of activities as theactivities connection |
user_birthday | friends_birthday | Provides access to the birthday with year as thebirthday property |
user_checkins | friends_checkins | Provides read access to the authorized user's check-ins or a friend's check-ins that the user can see. This permission is superseded by user_status for new applications as of March, 2012. |
user_education_history | friends_education_history | Provides access to education history as the education property |
user_events | friends_events | Provides access to the list of events the user is attending as the events connection |
user_groups | friends_groups | Provides access to the list of groups the user is a member of as the groups connection |
user_hometown | friends_hometown | Provides access to the user's hometown in thehometown property |
user_interests | friends_interests | Provides access to the user's list of interests as theinterests connection |
user_likes | friends_likes | Provides access to the list of all of the pages the user has liked as the likes connection |
user_location | friends_location | Provides access to the user's current location as thelocation property |
user_notes | friends_notes | Provides access to the user's notes as the notes connection |
user_photos | friends_photos | Provides access to the photos the user has uploaded, and photos the user has been tagged in |
user_questions | friends_questions | Provides access to the questions the user or friend has asked |
user_relationships | friends_relationships | Provides access to the user's family and personal relationships and relationship status |
user_relationship_details | friends_relationship_details | Provides access to the user's relationship preferences |
user_religion_politics | friends_religion_politics | Provides access to the user's religious and political affiliations |
user_status | friends_status | Provides access to the user's status messages and checkins. Please see the documentation for thelocation_post table for information on how this permission may affect retrieval of information about the locations associated with posts. |
user_subscriptions | friends_subscriptions | Provides access to the user's subscribers and subscribees |
user_videos | friends_videos | Provides access to the videos the user has uploaded, and videos the user has been tagged in |
user_website | friends_website | Provides access to the user's web site URL |
user_work_history | friends_work_history | Provides access to work history as the work property |
email | N/A | Provides access to the user's primary email address in the email property. Do not spam users. Your use of email must comply both with Facebook policies and with the CAN-SPAM Act. |