11. auto_modify_userinfo
今のところやっているのはfacebookのユーザー
イメージURLを書き換えるだけ
if (Config::get('dsauth.auto_modify_userinfo')) {
// this will be removed if facebook image url has no token
if (strpos($user_to_resgister['image'], 'https://graph.facebook.com/me/picture') !== false) {
$user_to_resgister['image'] = "https://graph.facebook.com/{$user_to_resgister['uid']}/
picture?type=normal";
}
}
13年3月23日土曜日