...

World Wide Web Server 2012-07-04 16:06:59 -07:00
parent 26dbcaad13
commit ff23484f79

@ -13,12 +13,12 @@ class Engage_login extends Controller{
function index(){
// Check for token
if(!$this->input->get('token')){
if(!$this->input->post('token')){
//NO TOKEN GIVEN!
}
// Send token to RPX Library
$this->engage->token($this->input->get('token'));
$this->engage->token($this->input->post('token'));
// auth_info API Call
$response = $this->engage->authinfo();