本文整理汇总了PHP中Authenticator::getDecryptedBody方法的典型用法代码示例。如果您正苦于以下问题:PHP Authenticator::getDecryptedBody方法的具体用法?PHP Authenticator::getDecryptedBody怎么用?PHP Authenticator::getDecryptedBody使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Authenticator
的用法示例。
在下文中一共展示了Authenticator::getDecryptedBody方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Authenticator
//************************************************
//************************************************
//************************************************
// NAO USAR!!!!!! APENAS PARA REFERENCIA!!!!!
//************************************************
//************************************************
//************************************************
//************************************************
//************************************************
//************************************************
//************************************************
$authenticator = new Authenticator();
if ($authenticator->isValidRequest()) {
LOGS("Valid Request! Getting the data...");
//Getting the data from the request
$json = json_decode($authenticator->getDecryptedBody(), TRUE);
//Saving the user data.
$database = new DataBase();
$result = $database->saveUserEmail($json['email'], $json['country']);
if ($result == null) {
LOGS("Problems in reading DB...");
header("HTTP/1.0 500 Internal server error");
} else {
//Sending the email
$subject = "Requested Results from Universal Lotto generator";
$message = "<html><body>\n";
$message .= "<a href=\"http://jedevmobile.com\"><img src=\"http://jedevmobile.com/images/JE_logo_medium.png\" alt=\"JEDevMobile\" /></a>\n";
$message .= "<h1>Thank You for using our app!</h1>\n";
$message .= "<h2>These are the results requested:</h2>\n";
$message .= "<table border=\"3\" style=\"border-color: #003250;\" cellpadding=\"10\">\n";
$oddLine = true;