AlipayClient alipayClient = new DefaultAlipayClient("https://openapi.alipay.com/gateway.do","app_id","your private_key","json","GBK","alipay_public_key","RSA2");
AlipayEcoCplifeNoticePublishRequest request = new AlipayEcoCplifeNoticePublishRequest();
request.setBizContent("{" +
"\"community_id_set\":[" +
"\"AJ5OFJC443301\"" +
"]," +
"\"notice_details\":{" +
"\"title\":\"停水通知\"," +
"\"type\":\"01\"," +
"\"content\":\"接电力公司通知,为配合线路检修,小区将于9月1日13:00停电,至9月1日18:00恢复供电,请大家谅解。\"," +
"\"start_time\":\"2016-07-2517:16:43\"," +
"\"end_time\":\"2016-07-2917:16:43\"," +
"\"stickied\":true," +
"\"image_list\":[{" +
"\"image_url\":\"http://youhost/image/abc.jpg\"," +
"\"thumbnail_url\":\"http://youhost/image/abc_small.jpg\"" +
"}]" +
"}" +
"}");
AlipayEcoCplifeNoticePublishResponse response = alipayClient.execute(request);
if(response.isSuccess()){
System.out.println("调用成功");
} else {
System.out.println("调用失败");
}
IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", "app_id", "merchant_private_key", "json", "1.0", "RSA2", "alipay_public_key", "GBK", false);
AlipayEcoCplifeNoticePublishRequest request= new AlipayEcoCplifeNoticePublishRequest() ;
request.BizContent="{" +
"\"community_id_set\":[" +
"\"AJ5OFJC443301\"" +
"]," +
"\"notice_details\":{" +
"\"title\":\"停水通知\"," +
"\"type\":\"01\"," +
"\"content\":\"接电力公司通知,为配合线路检修,小区将于9月1日13:00停电,至9月1日18:00恢复供电,请大家谅解。\"," +
"\"start_time\":\"2016-07-2517:16:43\"," +
"\"end_time\":\"2016-07-2917:16:43\"," +
"\"stickied\":true," +
"\"image_list\":[{" +
"\"image_url\":\"http://youhost/image/abc.jpg\"," +
"\"thumbnail_url\":\"http://youhost/image/abc_small.jpg\"" +
"}]" +
"}" +
"}";
AlipayEcoCplifeNoticePublishResponse response=client.execute(request);
Console.WriteLine(response.Body);
$aop = new AopClient ();
$aop->gatewayUrl = 'https://openapi.alipay.com/gateway.do';
$aop->appId = 'your app_id';
$aop->rsaPrivateKey = '请填写开发者私钥去头去尾去回车,一行字符串';
$aop->alipayrsaPublicKey='请填写支付宝公钥,一行字符串';
$aop->apiVersion = '1.0';
$aop->signType = 'RSA2';
$aop->postCharset='GBK';
$aop->format='json';
$request = new AlipayEcoCplifeNoticePublishRequest ();
$request->setBizContent("{" .
"\"community_id_set\":[" .
"\"AJ5OFJC443301\"" .
"]," .
"\"notice_details\":{" .
"\"title\":\"停水通知\"," .
"\"type\":\"01\"," .
"\"content\":\"接电力公司通知,为配合线路检修,小区将于9月1日13:00停电,至9月1日18:00恢复供电,请大家谅解。\"," .
"\"start_time\":\"2016-07-2517:16:43\"," .
"\"end_time\":\"2016-07-2917:16:43\"," .
"\"stickied\":true," .
"\"image_list\":[{" .
"\"image_url\":\"http://youhost/image/abc.jpg\"," .
"\"thumbnail_url\":\"http://youhost/image/abc_small.jpg\"" .
"}]" .
"}" .
"}");
$result = $aop->execute ( $request);
$responseNode = str_replace(".", "_", $request->getApiMethodName()) . "_response";
$resultCode = $result->$responseNode->code;
if(!empty($resultCode)&&$resultCode == 10000){
echo "成功";
} else {
echo "失败";
}
https://openapi.alipay.com/gateway.do?timestamp=2013-01-01 08:08:08&method=alipay.eco.cplife.notice.publish&app_id=2223&sign_type=RSA2&sign=ERITJKEIJKJHKKKKKKKHJEREEEEEEEEEEE&version=1.0&biz_content=
{
"community_id_set":[
"AJ5OFJC443301"
],
"notice_details":{
"title":"停水通知",
"type":"01",
"content":"接电力公司通知,为配合线路检修,小区将于9月1日 13:00停电,至9月1日18:00恢复供电,请大家谅解。",
"start_time":"2016-07-25 17:16:43",
"end_time":"2016-07-29 17:16:43",
"stickied":true,
"image_list":[{
"image_url":"http://youhost/image/abc.jpg",
"thumbnail_url":"http://youhost/image/abc_small.jpg"
}]
}
}
//为确保安全通信,需自行验证响应示例中的sign值是否为蚂蚁金服所提供。