Bernie
Posts: 0
Joined: Fri Jul 27, 2012 2:06 pm

Values not showing up on Windows Phone

The code below feeds some labels with data.
Any idea why it is not working on a Windows Phone?

var EventsID = localStorage.getItem("EventsID")
var graphQuery = 'https://graph.facebook.com/';
var authToken = 'myToken'

var url = graphQuery + EventsID +'?access_token='+ authToken;

$.getJSON(url,function(data){

Tiggzi('mobilelabelEventsDetailName').text(data.name);
Tiggzi('mobilelabelEventsDetailDescription').text(data.description);

Code: Select all

 Tiggzi('mobilelabelEventsDetailLocation').text(data.location);   

)}:

Code: Select all

 });
Bernie
Posts: 0
Joined: Fri Jul 27, 2012 2:06 pm

Values not showing up on Windows Phone

maybe a solution is to use the mapping features.
Having the URL and the request variable, how can I create a rest service with that in order to use it for mapping the values to my labels?

Bernie
Posts: 0
Joined: Fri Jul 27, 2012 2:06 pm

Values not showing up on Windows Phone

Solved.
Used a Dynamic service URL to create the restservice for mapping.

Return to “Issues”