API or framework that searches for drugs in different pharmacies

1

I need some API or framework that can search for medicines in several online pharmacies in Brazil. Does it exist?

    
asked by anonymous 24.03.2015 / 13:30

1 answer

1
NSURL *site = [NSURL URLWithString:[NSString stringWithFormat:@"http://....", termo]];
NSData *siteHTML = [NSData dataWithContentsOfURL:site];
TFHpple *siteParser = [TFHpple hppleWithHTMLData:siteHTML];

Through a TFHpple class it was possible to parse the site;)

See this very good tutorial for more information: link

    
05.04.2015 / 08:44