def post_audio_attachment(fbid, audio_url):
""" Sends an audio attachment
(/docs/messenger-platform/send-api-reference/audio-attachment)
:param str fbid: User id to send the audio.
:param str audio_url: Url of a hosted audio (10 Mb).
:return: `Response object <http://docs.python-requests.org/en/\
master/api/#requests.Response>`_
"""
return post_attachment(fbid, audio_url, 'audio')
评论列表
文章目录