Twilio一个和上一个URI使用

Twilio一个和上一个URI使用

问题描述:

我得到Twilio的下一个和上一个页面的URI通过PHP帮助库这样的..Twilio一个和上一个URI使用

$prevpage = $client->messages->page()->getPreviousPageUrl(); 
$nextpage = $client->messages->page()->getNextPageUrl(); 

什么是加载这些URI的数据建议的方式,使用PHP帮助器库?

Twilio开发者传道这里。

如果您不想使用,则不必使用URL。你可以叫nextPage()previousPage(),您将获取下一个/前一页:

$prevpage = $client->messages->page()->previousPage(); 
$nextpage = $client->messages->page()->nextPage(); 

让我知道这是否有助于在所有。