<?php

// just to show how we might receive this data
$jsonVar = '{"public-profile-url" : "I\'m the data"}';

// turn it into a PHP object:
$user = json_decode($jsonVar);

// let's look at it
print_r($user);

echo "public-profile-url: " . $user->{'public-profile-url'};