繁体   English   中英

com.google.apphosting.api.ApiProxy $ CancelledException:该API调用urlfetch.Fetch()已明确取消。 代码503 App Engine后端错误

[英]com.google.apphosting.api.ApiProxy$CancelledException: The API call urlfetch.Fetch() was explicitly cancelled. Code 503 App Engine Backend Error

我使用Google App Engine作为GCM的后端。 除以下错误外,它工作正常:

 {  "error": {   "errors": [    {
     "domain": "global",
     "reason": "backendError",
     "message": "com.google.apphosting.api.ApiProxy$CancelledException: The API call urlfetch.Fetch() was explicitly cancelled."    }   ],  
 "code": 503,   "message":
 "com.google.apphosting.api.ApiProxy$CancelledException: The API call
 urlfetch.Fetch() was explicitly cancelled."  } }

为了找到原因,我在整个代码中搜索了urlfetch.Fetch()方法,但没有找到它。

有人之前有这个错误吗? 如果是这样,请告诉我您如何解决?

有关更多信息,我添加了以下代码以为1000多个用户发送推送通知。

private List<RegistrationRecord> regIdTrim(List<RegistrationRecord> wholeList, final int start) {

        List<RegistrationRecord> parts = wholeList.subList(start,(start+1000)> wholeList.size()? wholeList.size() : start+1000);
        return parts;
    }
    /**
     * Send to the first 1000 devices (You can modify this to send to any number of devices or a specific device)
     *
     * @param message The message to send
     */
    public void sendMessage(@Named("message") String message) throws IOException {

        int count = ofy().load().type(RegistrationRecord.class).count();


        if(count<=1) {
            List<RegistrationRecord> records = ofy().load().type(RegistrationRecord.class).limit(count).list();
            sendMsg(records,message);
        }else
        {
            int msgsDone=0;
            List<RegistrationRecord> records = ofy().load().type(RegistrationRecord.class).list();

            do {
                List<RegistrationRecord> regIdsParts = regIdTrim(records, msgsDone);
                msgsDone+=1000;
                sendMsg(regIdsParts,message);
            }while(msgsDone<count);

        }
    }
    private void sendMsg(List<RegistrationRecord> records,@Named("message") String msgToSend) throws IOException {

        if (msgToSend == null || msgToSend.trim().length() == 0) {
            log.warning("Not sending msgToSend because it is empty");
            return;
        }

        Sender sender = new Sender(API_KEY);
       // Message msg = new Message.Builder().addData("msgToSend", msgToSend).build();
        Message msg = new Message.Builder().
                addData("notification_title", msgToSend)
                .addData("description","Check ").build();

        // crop longer messages
        if (msgToSend.length() > 1000) {
            msgToSend = msgToSend.substring(0, 1000) + "[...]";
        }
        for (RegistrationRecord record : records) {
            Result result = sender.send(msg, record.getRegId(), 5);

            if (result.getMessageId() != null) {
                log.info("Message sent to " + record.getRegId());
                String canonicalRegId = result.getCanonicalRegistrationId();
                if (canonicalRegId != null) {
                    // if the regId changed, we have to update the datastore
                    log.info("Registration Id changed for " + record.getRegId() + " updating to " + canonicalRegId);
                    record.setRegId(canonicalRegId);
                    ofy().save().entity(record).now();
                }
            } else {
                String error = result.getErrorCodeName();
                if (error.equals(Constants.ERROR_NOT_REGISTERED)) {
                    log.warning("Registration Id " + record.getRegId() + " no longer registered with GCM, removing from datastore");
                    // if the device is no longer registered with Gcm, remove it from the datastore
                    ofy().delete().entity(record).now();
                } else {
                    log.warning("Error when sending msgToSend : " + error);
                }
            }
        }
    }

似乎服务器正在阻止您://我相信它与您正在对其进行射击的1000个网络请求有关。

向服务器发送要推送给它们的1000个ID的列表,然后让服务器处理推送。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM