Name: {name}
Translator since: {translator_since}
From: {from}
Collaboration with you: {collaboration}
{about}
{fieldofexpertise}
 {name}

Nativy Connect

nativy translations
Description Returns the user's api_public_key and api_private_key. You may store that information in your application, so the user needs to login only one time.
URL /connect/user/login

Parameters
email (required) string The email address the user is registered with nativy.
password (required) string The user's password.

Example call

    	        $url = 'https://webapp.nativy.com/connect/user/login';
	            $email = 'kerschbaummayr@nativy.com';
	            $password = 'testpassword';
			 
			    $url = $url
			            . '?email=' . urlencode($email) 
			            . '&password=' . urlencode($password); 
			 
			    $ch = curl_init($url); 
			 
			    curl_setopt($ch, CURLOPT_URL, $url); 
			    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
			    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
			    $response = curl_exec($ch);
			    curl_close($ch);
            

Return values

The same return values as /user GET, including the user's api_public_key and api_private_key.