I have to submit multiple photos using bazaarvoice sdk, not getting how to do that, I found something like
ReviewSubmissionRequest submission = new ReviewSubmissionRequest.Builder(submitAction, productId)
.userNickname("xxxx")
.title("Review title")
.reviewText("This is the review text the user adds about how great the product is!")
.addPhoto(localImageFile, "caption")
.build();
but, still not clear
Any help would be helpful.
You should be able to add many photos by calling addPhoto multiple times.