Testrail API to download Suite attachment - testrail

I trying to use Testrail API. I managed to successfully download attachments from test Cases, but I see no specifications for downloading attachments from Suites and Sections:
https://www.gurock.com/testrail/docs/api/reference/attachments/
Is there a way to do it using the regular API?

I communicated with gurock. There is no public API, they created feature request, no ETA though.

Related

How can I create an incoming webhook via ReadTheDocs API?

I am aware that you can create and delete incoming webhooks using the ReadTheDocs UI (for GitHub, GitLab, etc. integration), but I need to be able to do this without accessing the UI to automate the process. Is this possible? Or will webhook management be added to the API soon?
The API v3 documentation does not list an endpoint to add an integration. Therefore, at the moment this is not possible.
For feature requests, it's better to open an issue upstream.

How to change ClientLogin to OAuth 2.0 in Google Cloud Print?

Currently I trying to test the Google Cloud Print sample code in this link.
Sample Maven project
And I unsuccessful to RUN it.
I encounter FileNotFound error.
Then I start to browse the request url
ClientLogin url
This url redirect me to another documentation url ie:
AuthForInstall Url
and I found out that GoogleCloudPrint was totally deprecated and no longer available.
Now google using OAuth 2.0.
May I know how can I change ClientLogin to OAuth 2.0 in Google Cloud Print?
Thank you.

Azureml Web Service - How to create a Rest Service from an Experiment to be consumed by a mobile app?

I've looked all over the google and stackoverflow for the answer but I cant seem to find it. I'm trying to get the output from an azure experiment to an app. I've made the app using ibuildapp and google forms. How can I use the inputs from the google form, pass it to azure and get an output to display on the app?
In order to access your model from your app you want to create a rest service. See here.
http://azure.microsoft.com/en-us/documentation/articles/machine-learning-publish-a-machine-learning-web-service/
Then you will consume this rest serivce from your app using a standard http client. Sample code is available here.
http://azure.microsoft.com/en-us/documentation/articles/machine-learning-consume-web-services/

Google Drive API - Authorization for Downloads Post 1.70 Beta

I updated by Google Drive SDK references to 1.70 recently and updated all of my authentication code from using IAuthorizationState and the NativeApplicationClient to using UserCredentials, Drive.Auth.Store, and a DriveService object consistent with Google's "supported" method.
Everything working with my DriveService is working great. I can upload files, list files, create files and folders. Now I'm trying to figure out how to perform the simple act of downloading files by ID and I can't determine how I can leverage my new authentication code to support downloading. The SDK examples are referencing IAuthenticator but I'm not sure if that is a legacy object and my current project can't naturally reference it (missing a reference or perhaps isn't in 1.70).
I recognize that the Drive SDK may not actually have a method of downloading a file, but I'm very confused about how I can use my clean, new authentication store (Drive.Auth.Store) which has everything I should need to authenticate with the downloading action.
A point in the right direction would be most helpful! Thanks in advance for your help.

Google Drive Java Authentication

I am trying to fetch access token and refresh token using the document specified here. While doing so, I am faced with an issue:
java.lang.NoSuchMethodError: com.google.api.client.json.JsonFactory.fromInputStream(Ljava/io/InputStream;Ljava/lang/Class;)
Where can I find the jar which contains this class and method?
The Google Drive Java client library is based on the Google APIs Java client library. Make sure you download it as well. The zip contains the library and all its dependencies.
Also make sure that you don't have conflicting versions of the Google Apis Client library in your compile/classpath as this method is only available in later versions.