Good Morning Guys,
I need to develop a aplication for a Website that read one URL API in Json or XML does not matter
One of this below for example
URL:http://api.vagas.com.br/api/v1/21792/vagasfb.json?auth_token=XCxiok3L5uVzUxiYH-kp
I want to print tree fields only, filtered by date the Three first in order by newest
I made few attempts all them frustrated
One of those gives my timeout answer:
using System;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.IO;
using System.Xml;
using System.Text;
using System.Web.Script.Serialization;
public partial class _Default : System.Web.UI.Page
{
publ ...
Go to the complete details ...