Skip to content

Instantly share code, notes, and snippets.

View jasonpolites's full-sized avatar

Jason jasonpolites

View GitHub Profile
@jasonpolites
jasonpolites / addcomment.java
Created August 8, 2011 22:57
Socialize SDK Android - Comments
import com.socialize.Socialize;
import com.socialize.entity.Comment;
import com.socialize.error.SocializeException;
import com.socialize.listener.comment.CommentAddListener;
if(Socialize.getSocialize().isAuthenticated()) {
// Add a comment to an entity
Socialize.getSocialize().addComment("http://someurl.com", "My comment text", new CommentAddListener() {
public void onError(SocializeException error) {