25 April 2024 (v2.111)
ReachFive v2.111
introduces a few improvements and needed bug fixes.
You can now retrieve the age range for Naver users.
We have also updated some of our MFA endpoints to better improve integration with your site(s).
With this release, you can leverage the WeChat mini program flow.
As always, we made some general improvements and fixed a few items for you.
Naver user age range
You are now able to retrieve and leverage the naver_age_range
information from Naver users.
This is possible through the provider_metadata
object in the User Profile model.
You can also filter by the age range directly in the ReachFive Console for exports, pub/sub hooks, and webhooks.
For more details, see Naver.
{
...
"provider_metadata": {
"naver": {
"naver_age_range": "30~39" (1)
}
}
...
}
1 | The full list of potential values retrieved from Naver:
|
You can filter by age range in Export job definitions, Pub/Sub hooks, and User-event webhooks.
Return credentials in MFA verification endpoints
We have improved a few of our MFA endpoints so that integrators can provide useful information to users upon verifying credentials.
The following updates now return the verified credential in the response:
-
Verify MFA email: Get
/mfa/credentials/emails/verify
-
Verify MFA email via query parameters: Post
/mfa/credentials/emails/verify
-
Verify MFA phone number: Post
/mfa/credentials/phone-numbers/verify
-
Verify MFA email: Post
/mfa/credentials/emails/verify
-
Verify MFA phone number: Post
/users/{user_id}/mfa/credentials/phone-numbers/verify
WeChat mini program
With this release, we introduce ReachFive integration with WeChat mini programs. A mini program does not follow the same flow as other Social Login providers. In the case of this release, we are introducing the mini program for WeChat.
-
Configure a variant with
mini_program
as part of the name in the WeChat connector in the ReachFive Console. -
Start the flow using the
wx.login
method, where you’ll receive acode
in the response. -
Using this
code
, call the ReachFive/oauth/provider/token
endpoint.
For more details, see WeChat Connect.
Other improvements
-
As part of the improvements to be able to retrieve the Naver user age range, we have renamed the related Kakao user age range from
age_range
tokakaotalk_age_range
in the User Profile model. This helps to ensure integrators are using the correct fields and avoids any confusion.
Fixes
Item | Fixed |
---|---|
Some endpoints such as searchUsers and exportUsers were returning unexpected results. |
✓ |