I'm banging my head on the wall over this.
I have data coming from Facebook open graph via Facebook Connect. I just need to convert the value of specific objects into a variable. (so I can put it into my database later)
For example, I want to get "Music, Movies, Television, Interests, Books" and stringify all the results for this into individual variables for each.
Then I want to get the single results for "name, email, relationship_status, location" and do the same.
i.e. I want to create a set of data like this as the final result:
var name = "Rob Dades"
var email = "rob@dades.me"
var location = "Phoenix, AZ"
var relationship = "Single"
var music = "Lenny Kravits,Lady Gaga"
var books = "Think and Grow Rich,One for the Money"
var movies = "8 Seconds"
var television = "Divorce Court"
var interests = "Traveling"
etc.
Here is the live data coming from Facebook:
{
"birthday": "04/01/1987",
"location": {
"id": "105540216147004",
"name": "Phoenix, Arizona"
},
"relationship_status": "Single",
"name": "Rob Dades",
"email": "rob@dades.me",
"id": "100002467706519",
"books": {
"data": [
{
"name": "Think and Grow Rich",
"id": "109488202409989",
"created_time": "2012-10-12T16:12:50+0000"
},
{
"name": "One for the Money",
"id": "109386829087596",
"created_time": "2012-10-12T16:12:49+0000"
}
],
"paging": {
"next": "https://graph.facebook.com/100002467706519/books?limit=10&fields=name&offset=10"
}
},
"movies": {
"data": [
{
"name": "8 Seconds",
"id": "103781619660099",
"created_time": "2012-10-12T16:12:35+0000"
}
],
"paging": {
"next": "https://graph.facebook.com/100002467706519/movies?limit=10&fields=name&offset=10"
}
},
"music": {
"data": [
{
"name": "Lady Gaga",
"id": "10376464573",
"created_time": "2012-10-12T16:12:44+0000"
},
{
"name": "Lenny Kravitz",
"id": "5150088389",
"created_time": "2012-10-12T15:38:27+0000"
}
],
"paging": {
"next": "https://graph.facebook.com/100002467706519/music?limit=10&fields=name&offset=10"
}
},
"television": {
"data": [
{
"name": "Divorce Court",
"id": "66683700459",
"created_time": "2011-12-09T19:09:38+0000"
}
],
"paging": {
"next": "https://graph.facebook.com/100002467706519/television?limit=10&fields=name&offset=10"
}
},
"interests": {
"data": [
{
"name": "Traveling",
"id": "110534865635330",
"created_time": "2012-10-12T15:36:37+0000"
}
],
"paging": {
"next": "https://graph.facebook.com/100002467706519/interests?limit=10&fields=name&offset=10"
}
}
}
How can iterate over each object and get the data, then convert it into a variable to do something with (like put in my database)?
I tried something with this code, but it's just not working right at all:
$.each(json, function(arrayID,group) {
var group = group.data;
console.log(group); //for testing
$.each(group.data, function(key,value) {
var data = value.name;
console.log(value); //for testing
});
});
All help GREATLY appreciated!