コード例 #1
0
    public static void APICaller_POST_FORM_ENCODED(SqlString URL, SqlString scopeURL, SqlString client_id, SqlString client_secret)
    {
        try
        {
            string Result = APIConsumer.POSTMethod_UrlEncoded(URL.ToString(), scopeURL.ToString(), client_id.ToString(), client_secret.ToString());

            Helper.SendResultValue("Result", Result);
        }
        catch (Exception ex)
        {
            Helper.SendResultValue("Error", ex.Message.ToString());
        }
    }