public function MiniorangeSAMLCustomer::getCustomerKeys in SAML SP 2.0 Single Sign On (SSO) - SAML Service Provider 7
Get Customer Keys.
File
- includes/
customer_setup.php, line 64 - Contains miniOrange Customer class.
Class
- MiniorangeSAMLCustomer
- @file This class represents configuration for customer.
Code
public function getCustomerKeys() {
$url = MiniorangeSAMLConstants::BASE_URL . '/moas/rest/customer/key';
$fields = array(
'email' => $this->email,
'password' => $this->password,
);
return $this
->callService($url, $fields);
}