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 ?
Using Factual API for Android
422 Views Asked by Kamran Ullah At
5
There are 5 best solutions below
0

Go This page and download the relevant example
http://developer.factual.com/examples/
and start exploring.
1

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:
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.