WFKS.Check.Api.CheckApi
All URIs are relative to https://check.wanfangdata.com.cn/api
Method | HTTP request | Description |
---|---|---|
CheckPost | POST /Check | 检测 |
CheckPost
CheckResponse CheckPost (CheckRequest checkRequest)
检测
Example
using System;
using System.Diagnostics;
using WFKS.Check.Api;
using IO.Swagger.Client;
using WFKS.Check.Model;
namespace Example
{
public class CheckPostExample
{
public void main()
{
// Configure API key authorization: apiKey
// Configuration.Default.ApiKey.Add("token", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("token", "Bearer");
var apiInstance = new CheckApi("https://check.wanfangdata.com.cn/api");
apiInstance.Configuration.ApiKey.Add("token", "YOUR_API_KEY");
var checkRequest = new CheckRequest(); // CheckRequest | 检测请求
try
{
// 检测
CheckResponse result = apiInstance.CheckPost(checkRequest);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling CheckApi.CheckPost: " + e.Message );
}
}
}
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
checkRequest | CheckRequest | 检测请求 |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]