Quick intro: MySocialApp is a library that brings social network features to any apps in a few hours instead of months.
Here the main features:
Full features documentation is here
Code example:
// message with user mention + hash tag
String message = "Hello, my name is [[user:" + myProfile.getId() + "]] this is a post with an image and #hashtag :)";
// build message
FeedPost post = new FeedPost.Builder()
.setMessage(message) // add text message
.setImage(new File("/tmp/my_image.jpg")) // add image
.setVisibility(AccessControl.PUBLIC) // set post visible from all
.build();
// publish post on public feed
Feed feed = session.getNewsFeed().create(post);
// like the post
feed.addLike();
// build comment
CommentPost comment = new CommentPost.Builder()
.setMessage("Here a comment") // add comment message
.setImage(new File("/tmp/my_image.jpg")) // add comment image
.build();
// comment the post
feed.addComment(comment);
Here a quick demo of an app at 100% with MySocialApp API
Why should you use MySocialApp?
- Add social features to any app in a few hours instead of months
- API integration with your services (Web hook, Web socket, Push APNs + FCM, RESTful)
- Focus on what makes your app unique and save a lot of time
Languages
We support 3 languages (Java, Swift, Kotlin) and 2 frameworks (iOS, Android) at the moment. We will support 8 languages + 5 frameworks at the end of the year.
Question
What is your opinion about this service? Is this something you could need in the near or distant future? Your feedback is essential to me. Thank you
Top comments (0)