首页 > 解决方案 > 如何在反应本机应用程序中编码发送连接/好友请求

问题描述

功能:向基于 react native 构建的同一应用程序的另一个用户发送连接/好友请求

谁能建议我如何编码此功能

标签: react-native

解决方案


You are trying to make a social app. Rather than sending in-app notifications and friend requests , you should structure your app properly about how the requests flow will be processed via backend. That's how facebook , instagram does , they have their servers for each functionality and upon click of any request buttons in the app ,those api's are called and respective friend requests are sent to the user. So structure your code-architecture first. Do find the link below , it may help you React native social app


推荐阅读