これは返されるオブジェクトです。
Object:
contributors_enabled: false
created_at: "Sat Apr 18 02:20:51 +0000 2009"
...
status: Object
...
verified: false
ご覧のとおり、2つのオブジェクトがあります。親とその中のオブジェクトは「ステータス」と呼ばれます。
javascriptでは、「ステータス」オブジェクトにアクセスするにはどうすればよいですか。
object.status
nullを返すものを試しました。
実際のコード:
function get_data( $id ) {
global $tmhOAuth;
$code = $tmhOAuth->request( 'POST', $tmhOAuth->url('1/users/lookup.json', ''), array( 'user_id' => $id ) );
if ( $code == 200 ) {
$data = json_decode($tmhOAuth->response['response'], true);
return $data;
} else {
outputError($tmhOAuth);
}
}
if ( !empty( $_POST ) && !is_null( $_POST ) ) {
extract( $_POST ); //imports $id;
$data = get_data($id);
exit(json_encode($data));
}
$.post(
'/twitauth/app.php',
data,
function( response ) {
console.log( response );
},
'json'
);