Get facebook posts from a group [closed] - java

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I am developing an android app and I want the app to get post from a facebook group which I am admin.How is that possible? I search online but I couldn't find a solution to the problem.
Thanks in advanceHey everoyne .I am developing an android app and I want the app to get post from a facebook group which I am admin.How is that possible? I search online but I couldn't find a solution to the problem.
Thanks in advance

I am guessing you tried to do it with facebook API and didn't find a way.
You can perform a GET operation on the /{group-id}/feed edge to get posts on a Group.
curl -i -X GET \ "https://graph.facebook.com/554611227955614/feed?limit=5&access_token=EAACEdEos0..."
Another solution would be to use a tool such as chromedriver and scrape the data. In other words to create a web scraper. In any case, I think, it is not allowed based on terms of use of Facebook. There must be a reason that there is no such functionality in their official API (if thats the case)

Related

Is there a simple way to allow access to my website only through my Android application? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
Is there like any method to only allow direct access to my website only from the Android application.
Any other requests coming from any where else being blocked or redirected to a restricted access page or similar.
Please do provide any ideas or simple solutions and any step by step procedure to do so would be greatly appreciated.
a little idea here:
Make all your request to index HTML and then redirect according to user agent
On index validate the request headers seeking for user agent and if it's not android then redirect to another site.
Info about user-agent at mozilla site: here
Edit: As MrWhite says, make sure that Android app sends a unique user-agent.

How to tell Google that I tried to perform the task? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I want to create a java program that sends mails from my java app. I am using Gmail as the email provider and their servers.
My code works there are no errors or bugs, but Google security wont allow me to run it. It blocks the process.
Here is what I get when I visit my Google account after I run my java app:
Does anyone know if I can change that anywhere in my Google account settings?
Thank you in advance!
Your emailing service is being blocked because google thinks it not secure(which it isnt)
In order to allow request to go through you must turn on "Let less secure apps access my account" in your gmail settings.
here are 2 articles on this.

Data from a website [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I was just sitting and thinking what I should do in programming.
And I thought of a csgo item value calculator.
Then I thought how would I get the prices of the items.
So my question is how do I get information from ex. //
http://steamcommunity.com/market/listings/730/Chroma%202%20Case And retrieve the price of the item, which is in this: market_commodity_orders_header_promote
What I would recommend is getting some kind of API tool such as PostMan or Fiddler and use them to sniff the website. See if its calling any kind of API, and if it is, see if you can take advantage of that API to do what you need to do.
Website Scraping is also a valid option. Either way you should have a look and see which method would work best for you given your problem and experience level.
The most important part is research research research. Google everything before you ask. We all wish you the best of luck!

Please suggest approach for Java-based web app [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm a Java developer that hasn't coded in about 5 years and wants to polish up my skills. I am going to create a small app that uses an OAuth 2.0 authentication flow and then makes a few REST calls and displays the results. I've got my credentials setup with the OAuth provider.
I used Eclipse back in the day, is that still a solid IDE for this type of project? If I want to share the app with others to show my work, where could I host the code?
Thanks for these and any other pointers.
first off - yes, Eclipse if still a good choice.
if you can, make you app a web-application, and then you can host it in PaaS such as Google AppEngine. then the app itself will be always accessible from any machine that is connected to the web. this way, you will be able to show it to anyone you want.
if you only want to show the code, then GitHub or Google Code are a good choices.
HTH

Need your assistance to understand a point for Update status in Android [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm trying to understand some points in Android applications,
Actually i'm working on some university project app, And i've to publish regular base notifications on that app and but problem is How to do that?
I mean is that possible i just put notifications and users open that app and they get the latest news, But kindly please help What do i need to do in that case please help.
Help would be appreciated!
ok, do one thing for notification use GCM(Google cloud messenger) and to update the latest news and all you need to interact with the webservices part.search in google there are so many examples on GCM notification and Json webservices in android
If you need help in programming part.I can assist you

Categories