fix getAuthResponse type

This commit is contained in:
Mahmoud
2018-06-26 18:15:19 +02:00
parent 5e234bc2f0
commit 1ff50c5ebd
2 changed files with 24 additions and 23 deletions

View File

@@ -8,25 +8,22 @@ FB.init({
xfbml: true
});
FB.getLoginStatus(function(response: fb.AuthResponse) {
FB.getLoginStatus(function(response: fb.StatusResponse) {
console.log(response);
console.log(response.status);
console.log(response.authResponse.accessToken);
});
FB.getLoginStatus(function(response: fb.AuthResponse) {
FB.getLoginStatus(function(response: fb.StatusResponse) {
console.log(response);
console.log(response.status);
console.log(response.authResponse.accessToken);
}, true);
FB.getAuthResponse(function(response: fb.AuthResponse) {
console.log(response);
console.log(response.status);
console.log(response.authResponse.accessToken);
});
const authResponse: fb.AuthResponse = FB.getAuthResponse();
console.log(authResponse.accessToken);
FB.login(function(response: fb.AuthResponse) {
FB.login(function(response: fb.StatusResponse) {
console.log(response);
console.log(response.status);
console.log(response.authResponse.accessToken);
@@ -34,7 +31,7 @@ FB.login(function(response: fb.AuthResponse) {
scope: 'public_profile'
});
FB.logout(function(response: fb.AuthResponse) {
FB.logout(function(response: fb.StatusResponse) {
console.log(response);
console.log(response.status);
console.log(response.authResponse.accessToken);

View File

@@ -1,12 +1,14 @@
// Type definitions for the Facebook Javascript SDK 2.8
// Project: https://developers.facebook.com/docs/javascript
// Definitions by: Amrit Kahlon <https://github.com/amritk>
// Definitions by: Amrit Kahlon <https://github.com/amritk>
// Mahmoud Zohdi <https://github.com/mahmoudzohdi>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import fb = facebook;
declare var FB: fb.FacebookStatic;
declare namespace facebook {
interface FacebookStatic {
api: any;
AppEvents: any;
@@ -18,15 +20,17 @@ declare namespace facebook {
* The synchronous nature of this method is what sets it apart from the other login methods.
*
* @param callback function to handle the response.
*
* This method is similar in nature to FB.getLoginStatus(), but it returns just the authResponse object.
*/
getAuthResponse(callback: (response: AuthResponse) => void): void;
getAuthResponse(): AuthResponse;
/**
* FB.getLoginStatus() allows you to determine if a user is
* logged in to Facebook and has authenticated your app.
*
* @param callback function to handle the response.
*/
getLoginStatus(callback: (response: AuthResponse) => void, roundtrip?: boolean ): void;
getLoginStatus(callback: (response: StatusResponse) => void, roundtrip?: boolean ): void;
/**
* The method FB.init() is used to initialize and setup the SDK.
*
@@ -43,13 +47,13 @@ declare namespace facebook {
* @param callback function to handle the response.
* @param options optional ILoginOption to add params such as scope.
*/
login(callback: (response: AuthResponse) => void, options?: LoginOptions): void;
login(callback: (response: StatusResponse) => void, options?: LoginOptions): void;
/**
* The method FB.logout() logs the user out of your site and, in some cases, Facebook.
*
* @param callback function to handle the response
*/
logout(callback: (response: AuthResponse) => void): void;
logout(callback: (response: StatusResponse) => void): void;
/**
* @see https://developers.facebook.com/docs/sharing/reference/share-dialog
@@ -180,16 +184,16 @@ declare namespace facebook {
// RESPONSES
//
////////////////////////
interface AuthResponse {
accessToken: string;
expiresIn: number;
signedRequest: string;
userID: string;
}
interface StatusResponse {
status: string;
authResponse: {
accessToken: string;
expiresIn: number;
grantedScopes: string;
signedRequest: string;
userID: string;
};
authResponse: AuthResponse;
}
interface ShareDialogResponse {