Hi , all I develop an application with MV Snapshot API (C#.net). Before this , I tried to use Snapshot API with curl and Postman. The command sends and returns are OK from above both tools. and the command is successful from my application as well as both tools. but , from my application , sometimes Snapshot API returns an error with the same source codes,not always. the error message is "You are being <a href="https://n25.meraki.com/api/v0/networks/L_xXXXXXXXXXXXXXXXXXX/cameras/YYYY-YYYY-YYYY/snapshot">redirected</a>" Is this a bug of the API? or should I change my codes? I use RestClient. the following is the part of my codes, public static string GetSnapshot() // Get a snapshot from MV camera { var client = new RestClient("https://api.meraki.com/api/v0/networks/L_XXXXXXXXXXXX/cameras/" + MVSerialNumber + "/snapshot"); var request = new RestRequest(Method.POST); request.AddHeader("X-Cisco-Meraki-API-Key", MyMerakiAPIKey); IRestResponse response = client.Execute(request); return response.Content; } Any help would be appreciated. Regards
... View more