/// <summary>
 /// Gets information about the current app by calling the <var>/app</var> method. This requires an app access token.
 /// </summary>
 public FacebookAppResponse GetApp()
 {
     return(FacebookAppResponse.ParseJson(Raw.GetApp()));
 }
 /// <summary>
 /// Gets information about the specified app.
 /// </summary>
 /// <param name="id">The ID of the app.</param>
 public FacebookAppResponse GetApp(long id)
 {
     return(FacebookAppResponse.ParseJson(Raw.GetApp(id + "")));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Gets information about the specified app.
 /// </summary>
 /// <param name="id">The ID of the app.</param>
 public FacebookAppResponse GetApp(string id)
 {
     return(FacebookAppResponse.ParseResponse(Raw.GetApp(id)));
 }