Instagram Third Party api - java

Actually i wanted to make a clone of instagram and show user feed in another way and change the language of app for my own country , but there are several problems with standard instagram api
1.you cannot have user feed
2.you should become live to have user data
i guess some of apps use another api which is based on web version and i think this api fetch data from instagram webVersion or maybe official app,
i searched for a private api and i didn't found something suitable for my Task
i hope you guys could help me to find another instagram api for my job
it's better to be based on java or android
Thanks

Related

How to retrieve required information from my playstore app in java android?

In my app I have seen that users don't really bother to update the app so I want to encourage them through a dialog requesting them to update the app. The best way possible was to tell them about all the benefits of updating the app but I don't know how to retrieve this information from the Google Playstore.
Any help would be deeply appreciated!
It is best to use the Firebase Notification Center.Please follow the following Official documentation to implement in your app..
Firebase Messaging
There isn't an API to do this in Play at the moment. The way most app developers do this is have their own server where they have information about versions which they require to upgrade, and also can put notifications.
If you haven't done much server side work, maybe check out Firebase from Google. It integrates with the Google Play console, and it should be very quick to get something like this running.

Displays Site's and Facebook's posts in my Application

I am wondering about this technique, which I can display my site's posts and Facebook wall's posts together in my application, like an application I saw that displays a site's wall posts and Facebook page posts as a Cardview.
Here is a Screenshot of the app that displays the site's posts:
Here is another screenshot of displaying their Facebook page's wall posts:
I would like to know how to do this technique.
What is the name of the function and object?
You should use facebook API. Facebook Api such as Graph.
For that
1.Sign in as a developer.facebook.com and it will provide api key which you should add in your application dependency.
The Graph API is the primary way to get data in and out of Facebook's platform. you should make use of the sdk
Make use of graph api reference in its documentation page.
For more specific as android application facebook provide graph api for android.
For the website you should create your own api. There are many ways and languages to accompolish this but i prefer rails 5 api feature to do this.
Create rails 5 as a backend
You the json data which is generated by the rails application to mobile app.
Hope this make sense!!

android java add edit contacts google accounts

I want to access (add, edit) contacts of Google accounts on an android device. I'm using Android Studio.
I've found couple posts on http://stackoverflow.com:
Android - sync contact add programatically to google account
Xml model for adding contact to google contacts
However, first mentions problem and have no answer, second has only some parts of code and both do not show how to choose account if there are sereral on a device.
I foresee it could be considered broad question, however, if OK, please advice how to do my task with less code and setup (e.g. Maven or jar libraries or else) and with specific code samples - via Google API or some other way?
I think you'll be better off delegating this kind of work to the system, using Intents. You can have a look at how Google recommends to do it here
I hope this helps!

Facebook Android sdk and Facebook app overlapping

I have developed an Android game that integrates facebook SDK for checking if one has liked and sharing results.
I heard from my mate that he had problem that made him unable to use the like for reward feature on my app, so I decided to install facebook app myself to check out the problem.
For some reason if I am trying to access the fb api reading data from URL "https://api.facebook.com/method/pages.isFan?format=json&access_token=ACCESS_TOKEN&page_id=PAGE_ID" it opens up facebook app on Android which only flashes and then turns off.. How can I avoid this or is there better way to check if one has liked my page in order to give him reward?
I haven't used the Facebook API, but the Facebook app is probably opening because it's listening for broadcast Intents to "api.facebook.com". You could explicitly send the intent to a browser package instead, but this isn't a good solution as there are many browsers.
I would try to do a HTTPS request using a Loader to fetch and parse the json. Have you tried this yet?
I can't paste any code right now, sorry.
From your comment to above Answer , Glad to know that you solved your problem,
Here is the answer for your Question
is there better way to check if one has liked my page
You can surely use FQL - Facebook Query Language to do this, given under the developer documentation in Facebook site.
There are Two different table
1.Page - where you can get all the detail about the page
2.Page_Fan - which you can use to know the fan-id for the page

How to get Facebook friendList?

I am developing a Android chat app with facebook login and I want to get the user's all faccebook friends, either they are using this app or not. But the returned list is only contain the friends who are using the app. SO would any one like to give me a direction that how can I access the all user's friends. I also searched for the desired result but all my efforts proved futile. Any help would be highly appreciated. Thanks
according to new sdk facebook returns the person's friends who also use the app.
If you want to access a list of non-app-using friends, there are two options:
If you want to let your people tag their friends in stories that they publish to Facebook using your App, you can use the /me/taggable_friends API. Use of this endpoint requires review by Facebook and should only be used for the case where you're rendering a list of friends in order to let the user tag them in a post.
If your App is a Game AND your Game supports Facebook Canvas, you can use the /me/invitable_friends endpoint in order to render a custom invite dialog, then pass the tokens returned by this API to the standard Requests Dialog.

Categories