| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- // Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
- //
- // You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- // copy, modify, and distribute this software in source code or binary form for use
- // in connection with the web services and APIs provided by Facebook.
- //
- // As with any software that integrates with the Facebook platform, your use of
- // this software is subject to the Facebook Developer Principles and Policies
- // [http://developers.facebook.com/policy/]. This copyright notice shall be
- // included in all copies or substantial portions of the software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- #import <Foundation/Foundation.h>
- #import <FBSDKLoginKit/FBSDKDeviceLoginCodeInfo.h>
- #import <FBSDKLoginKit/FBSDKDeviceLoginManagerResult.h>
- NS_ASSUME_NONNULL_BEGIN
- @class FBSDKDeviceLoginManager;
- /*!
- @abstract A delegate for `FBSDKDeviceLoginManager`.
- */
- @protocol FBSDKDeviceLoginManagerDelegate <NSObject>
- /*!
- @abstract Indicates the device login flow has started. You should parse `codeInfo` to
- present the code to the user to enter.
- @param loginManager the login manager instance.
- @param codeInfo the code info data.
- */
- - (void)deviceLoginManager:(FBSDKDeviceLoginManager *)loginManager startedWithCodeInfo:(FBSDKDeviceLoginCodeInfo *)codeInfo;
- /*!
- @abstract Indicates the device login flow has finished.
- @param loginManager the login manager instance.
- @param result the results of the login flow.
- @param error the error, if available.
- @discussion The flow can be finished if the user completed the flow, cancelled, or if the code has expired.
- */
- - (void)deviceLoginManager:(FBSDKDeviceLoginManager *)loginManager
- completedWithResult:(nullable FBSDKDeviceLoginManagerResult *)result
- error:(nullable NSError *)error;
- @end
- /*!
- @abstract Use this class to perform a device login flow.
- @discussion The device login flow starts by requesting a code from the device login API.
- This class informs the delegate when this code is received. You should then present the
- code to the user to enter. In the meantime, this class polls the device login API
- periodically and informs the delegate of the results.
- See [Facebook Device Login](https://developers.facebook.com/docs/facebook-login/for-devices).
- */
- @interface FBSDKDeviceLoginManager : NSObject <NSNetServiceDelegate>
- /*!
- @abstract Initializes a new instance.
- @param permissions permissions to request.
- */
- - (instancetype)initWithPermissions:(nullable NSArray<NSString *> *)permissions
- enableSmartLogin:(BOOL)enableSmartLogin
- NS_DESIGNATED_INITIALIZER;
- - (instancetype)init NS_UNAVAILABLE;
- + (instancetype)new NS_UNAVAILABLE;
- /*!
- @abstract the delegate.
- */
- @property (nonatomic, weak) id<FBSDKDeviceLoginManagerDelegate> delegate;
- /*!
- @abstract the requested permissions.
- */
- @property (nullable, nonatomic, copy, readonly) NSArray<NSString *> *permissions;
- /*!
- @abstract the optional URL to redirect the user to after they complete the login.
- @discussion the URL must be configured in your App Settings -> Advanced -> OAuth Redirect URIs
- */
- @property (nullable, nonatomic, copy) NSURL *redirectURL;
- /*!
- @abstract Starts the device login flow
- @discussion This instance will retain self until the flow is finished or cancelled.
- */
- - (void)start;
- /*!
- @abstract Attempts to cancel the device login flow.
- */
- - (void)cancel;
- @end
- NS_ASSUME_NONNULL_END
|