People can login at different websites using face book account. Similarly, we are creating a client site on which user can login using credentials of server side.
I'm using these modules:
At client Side:
Connector: 7.x-1.0-beta 1+1-dev
OAuth Conenctor 7.x-1.0-beta1+6-dev
OAuth 7.x-3.0+18-dev
Services 7.x-3.3
Http Client OAuth "7.x-2.4"
Services Client 7.x-1.x-dev

At server side
OAuth 7.x-3.0+18-dev
OAuth Login Provider 7.x-1.1
Services 7.x-3.3+11-dev

Using OAuth connector, I can receive user name and email to client site. But I want to map some other user fields too like DOB, Full Name, and Nationality etc. I mapped it using Aouth Connector configuration but it is not displaying these fields on user profile.

This is the Export code for OAuth Connection
$provider = new stdClass();
$provider->disabled = FALSE; /* Edit this to true to make a default provider disabled initially */
$provider->name = 'formezauth';
$provider->title = 'FormezAuth';
$provider->url = 'http://localhost/SERVER';
$provider->consumer_advanced = array(
'oauth2' => 0,
'signature method' => 'HMAC-SHA1',
'authentication realm' => '',
'request token endpoint' => '/oauth/request_token',
'authorization scope' => '',
'authorization endpoint' => '/oauth/authorize',
'access token endpoint' => '/oauth/access_token',
);
$provider->mapping = array(
'fields' => array(
'uid' => array(
'resource' => 'http://localhost/SERVER/oauthlogin/api/oauthlogin/info',
'method post' => 1,
'field' => 'uid',
'querypath' => FALSE,
'sync_with_field' => '',
),
'field_nome' => array(
'resource' => 'http://localhost/SERVER/oauthlogin/api/oauthlogin/info',
'method post' => 1,
'field' => 'field_nome',
'querypath' => FALSE,
'sync_with_field' => 'field_nome',
),
'mail' => array(
'resource' => 'http://localhost/SERVER/oauthlogin/api/oauthlogin/info',
'method post' => 1,
'field' => 'mail',
'querypath' => FALSE,
'sync_with_field' => 'mail',
),
'picture' => array(
'resource' => 'http://localhost/SERVER/oauthlogin/api/oauthlogin/info',
'method post' => 1,
'field' => 'picture',
'querypath' => FALSE,
'sync_with_field' => 'picture',
),
'name' => array(
'resource' => 'http://localhost/SERVER/oauthlogin/api/oauthlogin/info',
'method post' => 1,
'field' => 'name',
'querypath' => FALSE,
'sync_with_field' => 'name',
),
'avatar' => array(
'resource' => '',
'method post' => 0,
'field' => '',
'querypath' => FALSE,
'sync_with_field' => '',
),
),
'format' => 'json',
);

So please if anyone can guide me in right direction.