Posts

Data Deletion Callback URL

    com/deletion?id=abc123'; // URL to track the deletion $confirmation_code = 'abc123'; // unique code for the deletion request $data = array( 'url' => $status_url, 'confirmation_code' => $confirmation_code ); echo json_encode($data); function parse_signed_request($signed_request) { list($encoded_sig, $payload) = explode('.', $signed_request, 2); $secret = "appsecret"; // Use your app secret here // decode the data $sig = base64_url_decode($encoded_sig); $data = json_decode(base64_url_decode($payload), true); // confirm the signature $expected_sig = hash_hmac('sha256', $payload, $secret, $raw = true); if ($sig !== $expected_sig) { error_log('Bad Signed JSON signature!'); return null; } return $data; } function base64_url_decode($input) { return base64_decode(strtr($input, '-_', '+/')); } ?>

Privacy Policy

PRIVACY POLICY INTRODUCTION RLG Studio ("RLG" or "we") is dedicated to protecting the privacy rights of our online users ("users" or "you"). This Privacy Policy has been crafted to inform you as to the ways we collect, store, use, and manage the information you provide in connection with any RLG's game or Application. Please note that the scope of this Privacy Policy is limited to only information collect from RLG through use of the Service. By using the service, you are agreeing to the collection and use of your personal information as outline in this Privacy Policy. We may amend the Privacy Policy from time to time, and we encourage you to consult the Privacy Policy regularly for changer. COLLECT INFORMATION When you use any RLG Service, also sometimes referred to as an "Application" or "App", you get access to its online community within that Service and you allow RLG to access certain information about you. The informa...