Based on OAuth2.0 User and Password Flow;
$ curl -X POST -d "grant_type=password&client_id=<client id>&client_secret=<client secret>&username=<sfdc username>&password=<sfdc password> https://login.salesforce.com/services/oauth2/token
<Response Sample>
{"id":"https://login.salesforce.com/id/<Org SFDC ID>/<User SFDC ID>","issued_at":"1392618318275","token_type":"Bearer","instance_url":"https://hoge.my.salesforce.com","signature":"mkhyg4tVfu1oGm/VfjCP067cJtwyjsoKOPfGbJSv56k=","access_token":"00DO0000004x5B9!ARsAQGEoxCxHNL6xafcKIc6miF_E9gQ7KSGFmt8rUxLdo_nbJEL.QgFU3891wI_OO0537dcH6o73yaFJ2uq3ZBMhh4WZrtya"}
$ set +H
$ curl -X GET -H "Authorization: Bearer 00DO0000004x5B9!ARsAQGEoxCxHNL6xafcKIc6miF_E9gQ7KSGFmt8rUxLdo_nbJEL.QgFU3891wI_OO0537dcH6o73yaFJ2uq3ZBMhh4WZrtya" -v https://hoge.my.salesforce.com/services/oauth2/userinfo
<Response Sample>
{
"sub": "https://login.salesforce.com/id/<Org SFDC ID>/<User SFDC ID>",
"user_id": "<User SFDC ID>",
"organization_id": "<Org SFDC ID>",
"preferred_username": "[email protected]",
"nickname": "mkubomura",
"name": "Kubomura Masaki",
"email": "[email protected]",
"email_verified": true,
"given_name": "Masaki",
"family_name": "Kubomura",
"zoneinfo": "Asia/Tokyo",
"photos": {
"picture": "https://hoge.content.force.com/profilephoto/005/F",
"thumbnail": "https://hoge.content.force.com/profilephoto/005/T"
},
"profile": "https://hoge.my.salesforce.com/<User SFDC ID>",
"picture": "https://hoge.content.force.com/profilephoto/005/F",
"address": {},
"urls": {
"enterprise": "https://hoge.my.salesforce.com/services/Soap/c/{version}/<Org SFDC ID>",
"metadata": "https://hoge.my.salesforce.com/services/Soap/m/{version}/<Org SFDC ID>",
"partner": "https://hoge.my.salesforce.com/services/Soap/u/{version}/<Org SFDC ID>",
"rest": "https://hoge.my.salesforce.com/services/data/v{version}/",
"sobjects": "https://hoge.my.salesforce.com/services/data/v{version}/sobjects/",
"search": "https://hoge.my.salesforce.com/services/data/v{version}/search/",
"query": "https://hoge.my.salesforce.com/services/data/v{version}/query/",
"recent": "https://hoge.my.salesforce.com/services/data/v{version}/recent/",
"profile": "https://hoge.my.salesforce.com/<Org SFDC ID>",
"feeds": "https://hoge.my.salesforce.com/services/data/v{version}/chatter/feeds",
"groups": "https://hoge.my.salesforce.com/services/data/v{version}/chatter/groups",
"users": "https://hoge.my.salesforce.com/services/data/v{version}/chatter/users",
"feed_items": "https://hoge.my.salesforce.com/services/data/v{version}/chatter/feed-items",
"custom_domain": "https://hoge.my.salesforce.com"
},
"active": true,
"user_type": "STANDARD",
"language": "ja",
"locale": "ja_JP",
"utcOffset": 32400000,
"updated_at": "2014-01-10T06:59:34.000+0000",
"is_app_installed": true
}