Re: Facebook Linked Data

Thanks, Kingsley.

But I'm still at a loss for having my facebook URI being part of Linked Data...

(see within)

On Fri, Sep 23, 2011 at 10:40 AM, Kingsley Idehen
<kidehen@openlinksw.com> wrote:
> On 9/23/11 10:11 AM, Tim rdf wrote:
>> Which URI should I put in my foaf file [1][2]?
>>
>> <http://purl.org/twc/id/person/TimLebo>
>>    a foaf:Person;
>>    owl:sameAs
>>               <http://graph.facebook.com/24407945#>,   #<-----
>> Facebook's URI for me!
>>               <http://graph.facebook.com/24407945>;     #<----- Or
>> should I omit the hash?
>>
>> [1]
>> https://github.com/timrdf/csv2rdf4lod-automation/blob/master/doc/instances/person/lebot.ttl
>> [2] my vanity is timothy.lebo
>
> Use: http://graph.facebook.com/24407945#this . It's your data space, so you
> can use identifiers as you see fit,

It's not my data space; it's Facebook's data space (as indicated by
the domain name up front and knowing that I'm not Mark).

Regardless of what URIs I make up by putting strings after that hash
(e.g., http://graph.facebook.com/24407945#this), NONE of them will be
described when I request them from Facebook; Facebook will just stare
back at me and say the same thing over and over again:

bash-3.2$ rapper -g -o ntriples http://graph.facebook.com/24407945
<http://graph.facebook.com/24407945#>
<http://graph.facebook.com/schema/user#id> "24407945" .
<http://graph.facebook.com/24407945#>
<http://graph.facebook.com/schema/user#name> "Timothy Lebo" .
<http://graph.facebook.com/24407945#>
<http://graph.facebook.com/schema/user#first_name> "Timothy" .
<http://graph.facebook.com/24407945#>
<http://graph.facebook.com/schema/user#last_name> "Lebo" .
<http://graph.facebook.com/24407945#>
<http://graph.facebook.com/schema/user#username> "timothy.lebo" .
<http://graph.facebook.com/24407945#>
<http://graph.facebook.com/schema/user#gender> "male" .
<http://graph.facebook.com/24407945#>
<http://graph.facebook.com/schema/user#locale> "en_US" .

Note that <http://graph.facebook.com/24407945#this> is NOT in
Facebook's response, so I fell into a dead end why trying to find out
about #this because there are no triples mentioning it).


By seeing:

<http://graph.facebook.com/24407945#>
<http://graph.facebook.com/schema/user#first_name> "Timothy" .

I'd say that

<http://purl.org/twc/id/person/TimLebo> owl:sameAs
<http://graph.facebook.com/24407945#>; a foaf:Person .

HOWEVER,

requesting <http://graph.facebook.com/24407945#> doesn't get me my first name .

Regards,
Tim




>> Why does<http://graph.facebook.com/24407945#>  not resolve to anything,
>>
>> bash-3.2$ curl -H 'Accept: text/turtle'
>> http://graph.facebook.com/24407945#
>> _:error
>>        :error [
>>                        :message "(#803) Some of the aliases you requested
>> do not exist: 24407945#" ;
>>                        :type "OAuthException" ] .
>>
>> while<http://graph.facebook.com/24407945>  resolves to something that
>> doesn't describe<http://graph.facebook.com/24407945>?
>>
>> bash-3.2$ curl -H 'Accept: text/turtle' http://graph.facebook.com/24407945
>> @prefix user:<http://graph.facebook.com/schema/user#>  .
>> </24407945#>
>>        user:id "24407945" ;
>>        user:name "Timothy Lebo" ;
>>
>> Thanks,
>> Tim Lebo

Received on Friday, 23 September 2011 15:00:46 UTC