Trying to use Northwind oData Service but not data is returned, previously this was working.
when I check the connection I get the following message:
Connection to "Northwind" established. Response returned: "301: Moved
Permanently"
Any suggestions on how to resolve greatly appreciated.
I just faced a similar situation right now.
Most likely you are using the link without the secure protocol.
Try using https://services.odata.org instead of http://services.odata.org.
I saw old configurations pointing to the wrong URL, but after changing to the secure protocol the problem was solved.
Kindly check out the URL :
https://services.odata.org/V2/Northwind/Northwind.svc/$metadata
NorthWind ODATA Service is working
https://services.odata.org/V2/Northwind/Northwind.svc/Categories?$format=json.
Related
I have just installed openchain (http://openchain.org)
I can check it on http://nossl.wallet.openchain.org/ but I would like to check API using Postman Rest client tool on my PC.
I'm using postman rest client and I have tried URI many times but response is empty : https://docs.openchain.org/en/latest/api/method-calls.html
Please give some advises, thanks in advance !
You should want it to look like something like this picture. Check your headers also, when I use the URL https://www.openchain.org/endpoint/query/recordversion?key=FFFF I get nothing and then when I check the headers I see there is a 404 status which means I was able to communicate with the server but it couldn't find my key. Which makes sense since I am just passing a random key. So see if you are getting a 404 error in your headers and if so then make sure your key is correct.
After migration to https we had a problem with the flickr-api. Cannot find whether the Flickr supports rest over https?
We expect to make this kind of request which works fine over http and no way over https.
https://api.flickr.com/services/rest/?format=json&sort=interestingness-desc&method=flickr.photos.search&tags=Italy&tag_mode=all&api_key=<key>
Any help please or advise?
You can simply replace: http://api.flickr.com/services
with: https://secure.flickr.com/services
Taken from Here
**** Update ****
As Michael pointed out, the URL has changes and it's now - https://api.flickr.com/services
After some hours of searching and posting at yws-flickr. We've seen for two workarounds:
proxying flickr request through your server via https (more load and
some security issues may come out)
pereodically update database of
links via cron service (implement this one)
I've started working with MailChimp's api.
I've tried connecting to their servers using a rest call
based on a sample code I've found somewhere:
http://api.mailchimp.com/1.3/?output=json&method=campaignTemplateContent&apikey=MyKey-us2&cid=myId
Unfortounatly I keep getting this error:
{"error":"Invalid Mailchimp API Key: **MyKey**-us2 . You are accessing the wrong datacenter - your client library may not properly support our datacenter mapping scheme.","code":104}
I can't find any other code samples working on MailChimp's rest api.
What am I doing wrong here? Where are the code samples?
Thanks
Your URL is incorrect. You should be hitting http://us2.api.mailchimp.com instead of the one you're using.
Ha ii everybody ,i am doing a reader application in iphone ,my need is to sync text to google-doc and download it when even wanted,i finished it,but my problem is when i put the username and password to google-doc for authentication it shows an error message GData error Service Forbiddon…."403.4 SSL required"(403),whats the meaning of this message?how can i solve this,if anybody knows how to solve this issue please help me as soon as possible.
Thanks in advance.
Without knowing how you exactly send the request the message indicates that you have to use SSL and thus https to access the service instead of http. Depending on how you query the service this may be as simple as changing the URL or quite complicated.
I have solved my problem .we have to put https instead of http for the url.simple.Need to put (s) in http.every thing works fine for me now.
Thanks .
I have just set up a custom tab on my page for the first time. I have thoroughly followed the setup guide and seem to have everything on the Facebook side setup correctly.
However when I view my page it throws the following error:
Method Not Allowed The requested method GET is not allowed for the
URL /Facebook/index.html. Additionally, a 404 Not Found error was
encountered while trying to use an ErrorDocument to handle the
request. Apache/1.3.41 Server at feebnaturals.com.au Port 80
I believe it may be some kind of Apache server config issue, however I'm not that Apache savvy, so not sure where to start.
I had the same problem, but instead of GET, it was POST method which was not allowed. This is a setting on your server. Not server savvy myself, but it seems that my provider didn't allow this method on html-page, but makes no problem on doing the same for php-pages. So all I did was rename my page from .html to .php, updated the app settings in facebook and all works fine now.
This is definitely an error on your side, check your server logs and see what they say - it looks like you've configured the page to only work via a POST request and it's being requested in a GET request