iTunes API and HTTPS - json

I wondered if anyone here could give some clarfication on wehther the iTunes and Flickr API's can be called up via https. This is for a facebook app.
These two API's are being blocked in the app due to non https call ups via JSon. I tried a few fixes but iTunes and Flickr do not seem to offer https for their API's. Am I wasting my time?
Any help or guidance would be greatly appreciated. Many thanks.

The iTunes Search API just got support for https. You can find the announcement on the affiliate resources site here:
http://www.apple.com/itunes/affiliates/resources/blog/secure-links-to-itunes---content-and-tools.html

Related

Google Maps Platform is suddenly rejecting my request

Suddenly today our services started to have requests rejected by Google Maps Platform. The message we get is the following:
"Google Maps Platform rejected your request. This IP, site or mobile application is not authorized to use this API key. Request received from IP address , with referer: "
I've looked into our settings and nothing has changed, all seem to be properly set, including authorized domains.
I've looked to many other questions here on Stackoverflow but none of the answers solved my problem. This integration was working just fine before today.
Thanks for your help!
I was able to make it work by enabling the Embed API that was the source of the issue.

Google Drive SDK currently supports only Http for Realtime APIs

Latest news coming from iOS-> https://techcrunch.com/2016/06/14/apple-will-require-https-connections-for-ios-apps-by-the-end-of-2016/
Anybody from google-drive-sdk support can tell if there is a plan to support https for Realtime APIs soon?
You can run realtime APIs in https URIs. I don't see any problem with that. HTTPS is referring to website security. It's an added encryption layer of SSL/TLS to protect the traffic. So it should be ok.
If you check the Google Realtime API, you can see https is always used.
A Googler even runs his realtime API samples in HTTPS in this video.
Note: Transitioning from HTTP to HTTPS doesn't magically happen. Here's a guide to that. Even local servers are not exempted.

How can i define javascript API domain on linkedin for cordova app

Good afternoon, I am creating an application in Cordova and wanted to use linkedin, but when I run my application, it says I need to set my domain javascript API in my Application linkedin. I've tried with the domain "file: ///" but gives the same error.
Does anyone have an idea or a solution to this problem?
Best Regards
LinkedIn (or any OAuth provider) requires your Web domain for security purposes (to know the right URL for authentication callbacks, and to help prevent random sites from trying to impersonate your application).
You must supply a domain such as www.yourdomainname.com or even your external IPv4 address will work, such as 55.55.12.12.

Google Drive sharing dialog blocked by x-frame-options, sameorigin

I can not get the Share dialog to work for the life of me. I created a test page here: https://super.neutrondrive.com/edit?view=test
What am I doing wrong that I keep getting blocked by xframe?
It looks like the problem was I needed to have the app installed on the user's Google Drive. When using the backend api this is pretty easy to do, but when using the JS API this is not readily apparent.

Is there a way to get all files and folders by sending one HTTP request?

for google drive, i can make a simple request:
GET https://www.googleapis.com/drive/v2/files
reference link: https://developers.google.com/drive/v2/reference/files/list
I was thinking if box-api can do the same for me.
The v2 API does not currently support this. For what it's worth, Google's support for this is somewhat unique among the big storage providers -- Dropbox and SkyDrive won't do it either.