2017-02-26 97 views
0

我正在使用Quickblox sdk 3.3.0 sdk有什么问题,或者我错误地使用它?Quickblox android QBCustomObjects.deleteObjects不能正常工作

int count = QBCustomObjects.countObjects("tbl_taxi_gps", req).perform(); 
       if (count > 30) { 
        req = new QBRequestGetBuilder(); 
        req.eq("uid", qbUser.getId()); 
        ArrayList<QBCustomObject> list = QBCustomObjects.getObjects("tbl_taxi_gps", req, new Bundle()).perform(); 
        final StringifyArrayList<String> rem = new StringifyArrayList<String>(); 
        for (int i = 0; i == 31; i++) 
         //QBCustomObjects.deleteObject("tbl_taxi_gps", list.get(i).getCustomObjectId()); 
         rem.add(list.get(i).getCustomObjectId()); 
        QBCustomObjects.deleteObjects("tbl_taxi_gps", rem).perform(); 


        Log.w("LocationService", "deleted"); 
       } 

当我使用QBCustomObjects.deleteObject("tbl_taxi_gps", list.get(i).getCustomObjectId()); 它的做工精细,但如果我试图删除多个对象会出现这种情况:

 ========================================================= 
                 === REQUEST ==== 15e62680-8979-4d7c-8d36-9e3eef421fcf === 
                 REQUEST 
                  DELETE https://api.quickblox.com/data/tbl_taxi_gps/.json 
                 HEADERS 
                  QuickBlox-REST-API-Version=0.1.1 
                  QB-SDK=Android 3.3.0 
                  QB-Token=704c5e5a589xxf8a24bxx78xx850ddexx900cd6b 
                 PARAMETERS 

                 INLINE 
                  DELETE https://api.quickblox.com/data/tbl_taxi_gps/.json 
    02-26 08:55:42.001 7063-7319/com.sss.taxi:main D/QBASDK: ********************************************************* 
                 *** RESPONSE *** 15e62680-8979-4d7c-8d36-9e3eef421fcf *** 
                 STATUS : 404 
                 HEADERS 
                  X-Runtime=0.007143 
                  Cache-Control=no-cache 
                  X-Rack-Cache=invalidate, pass 
                  QuickBlox-REST-API-Version=0.1.1 
                  X-Android-Selected-Protocol=http/1.1 
                  X-UA-Compatible=IE=Edge,chrome=1 
                  Status=404 Not Found 
                  X-Request-Id=8bdc1f2e9ead87d9a91dfef128735b2b 
                  X-Android-Response-Source=NETWORK 404 
                  Connection=Close 
                  X-Android-Sent-Millis=1488128141405 
                  Content-Type=application/json; charset=utf-8 
                  Date=Sun, 26 Feb 2017 16:55:44 GMT 
                  Server=openresty/1.9.15.1 
                  Content-Length=44 
                  X-Android-Received-Millis=1488128141999 
                  Access-Control-Allow-Origin=* 
                 BODY 
                  '{"code":null,"message":"Resource not found"}' 
    02-26 08:55:42.002 7063-7319/com.sss.taxi:main W/System.err: com.quickblox.core.exception.QBResponseException: Entity you are looking for was not found.,Resource not found 
    02-26 08:55:42.003 7063-7319/com.sss.taxi:main W/System.err:  at com.quickblox.core.parser.QBJsonParser.parse(Unknown Source) 
    02-26 08:55:42.003 7063-7319/com.sss.taxi:main W/System.err:  at com.quickblox.auth.session.Query.perform(Unknown Source) 
    02-26 08:55:42.003 7063-7319/com.sss.taxi:main W/System.err:  at com.sss.taxi.GPS.LocationService.run(LocationService.java:93) 
    02-26 08:55:42.003 7063-7319/com.sss.taxi:main W/LocationService: errr 

问题是在请求地址。

其他请求

它指向正确的地址:https://api.quickblox.com/data/tbl_taxi_gps.json 但如果我使用QBCustomObjects.deleteObjects(...)它将指向:https://api.quickblox.com/data/tbl_taxi_gps/.json

这是一个错误?

有什么办法摆脱这个问题?

大量的调试后

回答

1

并尝试不同的方式,我发现 这应该是我的输出/classname/id1,id2,id3.json和我有/classname/.json 所以这个问题是与得到IDS从list