ritamnrg / facebook-java-api

Automatically exported from code.google.com/p/facebook-java-api
0 stars 0 forks source link

Batching does not work in 3.0.2 #285

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

1. Use a FacebookJsonRestClient(apiKey, secret, sessionKey) object and call
beginBatch() on this object
2. Call users_getLoggedInUser() on the same object
3. The users_getLoggedInUser() returns immediately with a
NullPointerException thrown at
com.google.code.facebookapi.ExtensibleClient.extractLong(ExtensibleClient.java:2
281)
4. Note: the executeBatch(...) method isn't reached because the first batch
method (in this case users_getLoggedInUser()) throws the exception.

I'm using facebook-java-api-3.0.2.jar.

Original issue reported on code.google.com by rpw...@gmail.com on 29 Jan 2010 at 1:35