@capacitor-community/facebook-login
기본 Facebook 로그인을 위한 커패시터 커뮤니티 플러그인.
유지관리자 | GitHub | 사회의 | 후원기업 |
---|---|---|---|
마사히코 사카키바라 | rdlabo | @rdlabo | 관계 디자인 라보, 일반 INC. 협회 |
contributors-img로 제작되었습니다.
데모 코드는 여기에 있습니다.
페이스북 라이브러리 버전을 알고 싶다면 다음을 확인해야 합니다:
% npm i --save @capacitor-community/facebook-login
% npx cap update
Capacitor v5 사용자는 플러그인 버전 v5를 사용해야 합니다.
% npm install @capacitor-community/facebook-login@5
android/app/src/main/AndroidManifest.xml
파일에서 <manifest><application>
아래에 다음 XML 요소를 추가합니다.
< meta-data android : name = " com.facebook.sdk.ApplicationId " android : value = " @string/facebook_app_id " />
< meta-data android : name = " com.facebook.sdk.ClientToken " android : value = " @string/facebook_client_token " />
android/app/src/main/res/values/strings.xml
파일에 다음 줄을 추가합니다.
< string name = " facebook_app_id " >[APP_ID]</ string >
< string name = " facebook_client_token " >[CLIENT_TOKEN]</ string >
[APP_ID]
및 [CLIENT_TOKEN]
Facebook 애플리케이션 ID로 바꾸는 것을 잊지 마세요.
자세한 내용은 여기에서 확인할 수 있습니다: https://developers.facebook.com/docs/android/getting-started
Android Studio를 다시 시작하고 클린 빌드를 수행하세요.
ios/App/App/AppDelegate.swift
파일에서 다음을 추가하거나 교체하세요:
import UIKit
import Capacitor
import FBSDKCoreKit
@ UIApplicationMain
class AppDelegate : UIResponder , UIApplicationDelegate {
var window : UIWindow ?
func application ( _ application : UIApplication , didFinishLaunchingWithOptions launchOptions : [ UIApplication . LaunchOptionsKey : Any ] ? ) -> Bool {
// Override point for customization after application launch.
FBSDKCoreKit . ApplicationDelegate . shared . application (
application ,
didFinishLaunchingWithOptions : launchOptions
)
return true
}
...
func application ( _ app : UIApplication , open url : URL , options : [ UIApplication . OpenURLOptionsKey : Any ] = [ : ] ) -> Bool {
// Called when the app was launched with a url. Feel free to add additional processing here,
// but if you want the App API to support tracking app url opens, make sure to keep this call
if ( FBSDKCoreKit . ApplicationDelegate . shared . application (
app ,
open : url ,
sourceApplication : options [ UIApplication . OpenURLOptionsKey . sourceApplication ] as? String ,
annotation : options [ UIApplication . OpenURLOptionsKey . annotation ]
) ) {
return true;
} else {
return ApplicationDelegateProxy . shared . application ( app , open : url , options : options )
}
}
}
가장 바깥쪽 <dict>
내부의 ios/App/App/info.plist
파일에 다음을 추가합니다.
< key >CFBundleURLTypes</ key >
< array >
< dict >
< key >CFBundleURLSchemes</ key >
< array >
< string >fb[APP_ID]</ string >
</ array >
</ dict >
</ array >
< key >FacebookAppID</ key >
< string >[APP_ID]</ string >
< key >FacebookClientToken</ key >
< string >[CLIENT_TOKEN]</ string >
< key >FacebookDisplayName</ key >
< string >[APP_NAME]</ string >
< key >LSApplicationQueriesSchemes</ key >
< array >
< string >fbapi</ string >
< string >fbapi20130214</ string >
< string >fbapi20130410</ string >
< string >fbapi20130702</ string >
< string >fbapi20131010</ string >
< string >fbapi20131219</ string >
< string >fbapi20140410</ string >
< string >fbapi20140116</ string >
< string >fbapi20150313</ string >
< string >fbapi20150629</ string >
< string >fbapi20160328</ string >
< string >fbauth</ string >
< string >fb-messenger-share-api</ string >
< string >fbauth2</ string >
< string >fbshareextension</ string >
</ array >
자세한 내용은 여기에서 확인할 수 있습니다: https://developers.facebook.com/docs/facebook-login/ios
import { FacebookLogin } from '@capacitor-community/facebook-login' ;
// use hook after platform dom ready
await FacebookLogin . initialize ( { appId : '105890006170720' } ) ;
자세한 내용은 여기에서 확인할 수 있습니다: https://developers.facebook.com/docs/facebook-login/web 그리고 https://github.com/rdlabo/capacitor-facebook-login/blob/master에서 반환 유형을 확인해야 합니다. /src/web.ts#L55-L57 기본 웹 페이스북 로그인 유형이 다릅니다!
import {
FacebookLogin ,
FacebookLoginResponse ,
} from '@capacitor-community/facebook-login' ;
const FACEBOOK_PERMISSIONS = [
'email' ,
'user_birthday' ,
'user_photos' ,
'user_gender' ,
] ;
const result = await ( < FacebookLoginResponse > (
FacebookLogin . login ( { permissions : FACEBOOK_PERMISSIONS } )
) ) ;
if ( result . accessToken ) {
// Login successful.
console . log ( `Facebook access token is ${ result . accessToken . token } ` ) ;
}
import { FacebookLogin } from '@capacitor-community/facebook-login' ;
await FacebookLogin . logout ( ) ;
import {
FacebookLogin ,
FacebookLoginResponse ,
} from '@capacitor-community/facebook-login' ;
const result = await ( < FacebookLoginResponse > (
FacebookLogin . getCurrentAccessToken ( )
) ) ;
if ( result . accessToken ) {
console . log ( `Facebook access token is ${ result . accessToken . token } ` ) ;
}
import {
FacebookLogin ,
FacebookLoginResponse ,
} from '@capacitor-community/facebook-login' ;
const result = await FacebookLogin . getProfile < {
email : string ;
} > ( { fields : [ 'email' ] } ) ;
console . log ( `Facebook user's email is ${ result . email } ` ) ;
initialize(...)
login(...)
logout()
reauthorize()
getCurrentAccessToken()
getProfile(...)
logEvent(...)
setAutoLogAppEventsEnabled(...)
setAdvertiserTrackingEnabled(...)
setAdvertiserIDCollectionEnabled(...)
initialize ( options : Partial < FacebookConfiguration > ) => Promise < void >
파람 | 유형 |
---|---|
options | Partial<FacebookConfiguration> |
login ( options : { permissions : string [ ] ; } ) = > Promise < FacebookLoginResponse >
파람 | 유형 |
---|---|
options | { permissions: string[]; } |
반환: Promise<FacebookLoginResponse>
logout ( ) = > Promise < void >
reauthorize ( ) = > Promise < FacebookLoginResponse >
반환: Promise<FacebookLoginResponse>
getCurrentAccessToken ( ) = > Promise < FacebookCurrentAccessTokenResponse >
반환: Promise<FacebookCurrentAccessTokenResponse>
getProfile < T extends Record < string , unknown > > ( options : { fields : readonly string [ ] ; } ) => Promise < T >
파람 | 유형 |
---|---|
options | { fields: readonly string[]; } |
반환: Promise<T>
logEvent ( options : { eventName : string ; } ) = > Promise < void >
파람 | 유형 |
---|---|
options | { eventName: string; } |
setAutoLogAppEventsEnabled ( options : { enabled : boolean ; } ) = > Promise < void >
파람 | 유형 |
---|---|
options | { enabled: boolean; } |
setAdvertiserTrackingEnabled ( options : { enabled : boolean ; } ) = > Promise < void >
파람 | 유형 |
---|---|
options | { enabled: boolean; } |
setAdvertiserIDCollectionEnabled ( options : { enabled : boolean ; } ) = > Promise < void >
파람 | 유형 |
---|---|
options | { enabled: boolean; } |
소품 | 유형 |
---|---|
appId | string |
autoLogAppEvents | boolean |
xfbml | boolean |
version | string |
locale | string |
소품 | 유형 |
---|---|
accessToken | AccessToken | null |
recentlyGrantedPermissions | string[] |
recentlyDeniedPermissions | string[] |
소품 | 유형 |
---|---|
applicationId | string |
declinedPermissions | string[] |
expires | string |
isExpired | boolean |
lastRefresh | string |
permissions | string[] |
token | string |
userId | string |
소품 | 유형 |
---|---|
accessToken | AccessToken | null |
T의 모든 속성을 선택 사항으로 설정
{ [P in keyof T]?: T[P]; }
T 유형의 속성 K 세트로 유형을 구성합니다.
{ [P in K]: T; }