You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Secure Mode helps to make sure that conversations between you and your users are kept private, and that one
100
-
user can't impersonate another. In Secure Mode Intercom for iOS will sign all requests going to the Intercom servers
101
-
with tokens. It requires your mobile application to have its own server which authenticates the app's users,
102
-
and which can store a secret. More information on secure mode can be found [here](http://docs.intercom.io/Install-on-your-mobile-product/enabling-secure-mode-in-intercom-for-ios )
103
-
99
+
Identity Verification helps to make sure that conversations between you and your users are kept private, and that one
100
+
user can't impersonate another. If Identity Verification is enabled for your app Intercom for iOS will sign all requests
101
+
going to the Intercom servers with tokens. It requires your mobile application to have its own server which authenticates the app's users,
102
+
and which can store a secret. More information on Identity VerificationIdentity Verification can be found [here](https://docs.intercom.com/configure-intercom-for-your-product-or-site/staying-secure/enable-identity-verification-in-intercom-for-ios )
103
+
104
104
@note This should be called before any user registration takes place.
105
-
@param hmac A HMAC digest of data.
106
-
@param data A piece of user data.
105
+
@param userHash A HMAC digest of the user ID or email.
106
+
*/
107
+
+ (void)setUserHash:(NSString *)userHash;
108
+
109
+
/*!
110
+
@deprecated +[Intercom setHMAC:data:] is deprecated. Use +[Intercom setUserHash:] instead.
0 commit comments