Posting comment on facebook from 30th April 2015 - facebook

Hi I have application built-in c# and i am using facebook.dll for posting comment on facebook post. As facebook will going to change their api on 30th April 2015, what all changes do I need to make in my code or where I will get updated facebook.dll compatible with version publishing on 30th April 2015?

Related

what is the new deprecation date for azure ad graph api?

I have been trying to find out the deprecation date for azure AAD Graph APIs. The below mentioned post says that the deprecation is in June 2022, but its postponed. I cannot find the new deprecation date anywhere. Is that announced already?
According to the blog post - https://techcommunity.microsoft.com/t5/azure-active-directory-identity/update-your-applications-to-use-microsoft-authentication-library/ba-p/1257363,
It's mentioned that AAD Graph API will be deprecated by June 2022, and its postponed now. What is the new deprecation date?
A Exact date has not been announced yet when Azure AD graph Finally will be deprecated as it was supposed to deprecated by June 30th 2020 but now it's extented its date and A follow up announcement will be published before 31 December 2022 with more information on additional tools to assist you with your migration and an updated retirement date.
Referennce :Update: Azure AD Graph retirement date

Is api.facebook.com here to stay or will it be deprecated along with Graph API v1.0?

I am working on a project that requires getting the number of Likes and Shares of various links.
This can be done either by calling api.facebook.com or Graph API v1.0 in the public with no app and token required at all.
http://api.facebook.com/restserver.php?method=links.getStats&urls=http://www.example.com/
http://graph.facebook.com/http://www.example.com/
However, Facebook has started deprecating apps using Graph API v1.0, and their Platform Upgrade Guide makes no mention of api.facebook.com which predates Graph API v1.0.
Developers should expect apps calling API v1.0 to be migrated at any time after April 30th, 2015. The migration will roll out to all apps over the course of a few weeks.
Should I expect api.facebook.com to be deprecated along with Graph API v1.0, or will it be another sharer.php and be kept indefinitely?
It's announced as deprecated since a long time ago. Probably nobody will be able to tell you WHEN or IF Facebook will shut it down. But assume that this can happen anytime.
So, if you don't want to have your app suddenly break, then you should migrate to Graph API v2.3.
Have a look at
Migrating Facebook API for URL share count from v1.0 to v2.0+
So, apparantly the api.facebook.com server is regarded as v2.0, which is no longer available as of August 7th, 2016. All methods on api.facebook.com now return the REST API is deprecated for versions v2.1 and higher (12) error message.

Access albums of friends using Facebook graph API

I am trying to access albums of my friends.
According to changelogs of v2.1 it is now not possible to retrieve full friendlist but there are apps In android playstore which can download album of friends. How are they doing it?
They are probably using an App created before April 30th, 2014 - so they can still use v1.0, but only until end of April 2015. Apps created after April 2014 can only use v2.0+ and are not able to get all friends anymore and friend permissions have been removed too.
See changelog for all the dates: https://developers.facebook.com/docs/apps/changelog

Can I still get Facebook Friends with An App Created BEFORE April 30 2014?

I know about the whole April 30 policy of big brother doom that Facebook has introduced, but I read this somewhere:
"For apps which were active before April 30th, these apps can call
either Graph API v2.0 or Graph API v1.0, but Graph API v1.0 will be
deprecated on April 30th 2015."
Does this mean that if I have an app active before April 30th 2014, that I am still able to use API v1.0 to get all the users friends until next year?
I also have read that it depends if the user logs into the app with API1.0 or API2.0 ... How do users have the ability to choose the API, and does this mean that I will have access to some user's friends if they use V1.0, but not if they use V2.0?
Apps created before April 30th 2014 can still get all friends, until April 30th 2015.
You can force older Apps to use a newer API version:
https://developers.facebook.com/docs/javascript/quickstart/v2.1
(see the "version" parameter in the init-function)
You can also add the version tag in an API call, see changelog for more information about that: https://developers.facebook.com/docs/apps/changelog
Keep in mind that you canĀ“t force a new App to use an older version of the API.

Embeded Hashtags on facebook [duplicate]

This question already has answers here:
How can we track hashtags with the new facebook hashtag implementation
(2 answers)
Closed 8 years ago.
I want to get all the posts (ifram) for a particular hash tag in facebook. Like twitter widgets. i managed to do it with twitter , please advice me how to proceed this using facebook?
There is currently no Facebook hashtag API.
It is possible using a query where you search for the text of the hashtag. But instead of using the # character, use %23
https://graph.facebook.com/v1.0/search?q=%23TheHashtag
Note that you need to use the v1.0 API to do this. Searching Posts has been deprecated in 2.0. Remember that you can only use the v1.0 API if your app was created prior to April 30, 2014:
For apps created before April 30th 2014, making API calls without
specifying a version number is equivalent to calling v1.0 of the API.
For apps created on or after April 30th 2014, making API calls without
specifying a version number is equivalent to calling v2.0 of the API.
These apps won't be able to call v1.0 of the API.