Google OAuth api を使用して生年月日と婚姻状況を取得しようとしています。スコープを https://www.googleapis.com/auth/userinfo.profile & https://www.googleapis.com/auth/userinfo.emailとして設定することで、以下の情報を取得します。リクエスト URL はhttps://www.googleapis.com/oauth2/v2/userinfoです
{
"id": "my_id",
"email": "test@gmail.com",
"verified_email": true,
"name": "full_name",
"given_name": "first_name",
"family_name": "last_name",
"link": "https://plus.google.com/xxxxxxx",
"picture": "https://xxxxxxxxx/photo.jpg",
"gender": "male",
"locale": "en"
}
プロフィールに誕生日と婚姻状況を設定していますが、この情報を取得できません。問題は何でしょうか?