I am trying to build a Shopify app with the API, and I am trying to
make some calls via Java with the Apache HTTPClient library. There is
an app that was created for me at https://$
TEST_SHOP_NAME.myshopify.com/admin/api.
It has an Api Key, a Password and a Shared Secret.
When I make an API call with the same URL via the command-line with
curl or wget I can get results, although I have to set some options to
turn off HTTPS (curl -k or wget --no-check-certificate). I get nothing
when I try to get this to work in Java, both with http and https.
Do I need to add some header to get it to work in Java? I have not
tried to go through the steps in
http://api.shopify.com/authentication.html
(creating a new app, parsing the response, etc). I was under the
impression that I could just try some calls with the info from the
test app.