· 7 years ago · Aug 11, 2018, 11:06 AM
1The remote server returned an error: (404) Not Found. when using facebook graph api
2// Authenticated, created session and API object
3 _connectSession = new ConnectSession(ApplicationKey, SecretKey);
4
5 if (!_connectSession.IsConnected())
6 {
7 // Not authenticated, proceed as usual.
8
9 }
10 else
11 {
12 // Authenticated, create API instance
13 _facebookAPI = new Api(_connectSession);
14
15 // Load user
16 user user = _facebookAPI.Users.GetInfo();