Publicando JSON no Laravel

Estou tentando fazer uma solicitação de postagem de json para o Laravel. A solicitação é recebida no servidor, no entanto, quando tento acessar uma propriedade, recebo:"Tentando obter propriedade de não-objeto". No cliente eu estou usando angularjs.

angular:

$http.post($rootScope.globals.basePath+"login/handleAjax",{"id" : obj.values[0].id,"profileUrl" : obj.values[0].publicProfileUrl}).success(function(data){
             console.log("got success!",data);
         });

laravel:

class LoginController extends BaseController {
/*User logs in to linkedin and sends his id through ajax to this function*/
public function handle_ajax() {
    $data = Input::all();
    *//Clockwork is just a debugging extension I'm using*
    Clockwork::info($data->id); **//"Trying to get property of non-object".**
}

Nota: Eu posso ver no Fiddler que o JSON que está sendo enviado é válido e que atinge o método controller + (http 200).

A própria solicitação de postagem (como vista no Fiddler)

Headers: 
Accept: application/json, text/plain, */*
...
Text View:
{"id":"my id","profileUrl":"http://www.linkedin.com/pub/yoel-blum/51/373/76"}

questionAnswers(3)

yourAnswerToTheQuestion