Using Factual API for Android

422 Views Asked by At

I want to get product info by using barcode and want to query it in https://www.factual.com. How can I use factual API for Android and how I configure it ?

5

There are 5 best solutions below

1
On

You can follow up the get start in the documentation,

Here is the link: http://developer.factual.com/get-started/

Do it step by step, and on the step 4, you will get some example you need to try it out.

0
On

Go This page and download the relevant example

http://developer.factual.com/examples/

and start exploring.

1
On

You have to use http call to query the factual.com tables. Here are some http examples you have to call on your code: (after you have your api key)

http://api.v3.factual.com/t/products-cpg?q=shampoo

http://api.v3.factual.com/t/products-cpg?q=shampoo&filters={"brand":"pantene"}

http://api.v3.factual.com/t/products-cpg?filters={"upc":"052000131512"}

You can look on this page for more examples:

http://developer.factual.com/working-with-factual-products/

I think you are looking for this table field: upc_e = The UPC-E barcode used for identifying products. 8-digits in length.

The product table schema is here:

http://www.factual.com/data/t/products-cpg/schema

1
On
0
On

I solved my issue by placing php driver of factual in root directory of WAMP server.Instead of android, i use php driver. Now i am sending barcode form android device to WAMP (server) PHP driver.