This is a migrated thread and some comments may be shown as answers.

connection to api

1 Answer 80 Views
HTML5, CSS, JavaScript
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Maximilian
Top achievements
Rank 1
Maximilian asked on 27 Oct 2012, 12:35 AM
I'm new in the mobile app developement. I want to connect the app to a server and receive data (like curl in php or fb graph api). How can I do that? Thank you for your answer
Maximilian Stölzle

1 Answer, 1 is accepted

Sort by
0
Jordan
Telerik team
answered on 27 Oct 2012, 06:04 AM
Hi Maximilian,

Icenium make it extremely easy and simple to reuse existing web development 
skills (JavaScript, HTML, CSS) to build mobile applications.

In your case using jQuery.getJSON from jQuery library sounds easiest of many option.

Here is an example code:

$.getJSON('https://graph.facebook.com/19292868552', function(data) {
       alert(data.name);
});


Kind regards,
Jordan
the Telerik team

Share feedback and vote for features on our Feedback Portal.
Want some Kendo UI online training - head over to Pluralsight.
Tags
HTML5, CSS, JavaScript
Asked by
Maximilian
Top achievements
Rank 1
Answers by
Jordan
Telerik team
Share this question
or