You can't re-use the token again but I understand that this is not the matter of reply_token but the one of keeping context. Like HTTP session of web application, you have to save the conversation context of each users to data store like RDBMS. On the second sentence come, get context from DB by userId and recognize what your bot should answer, then reply with the reply_token given in second request.
- 1