Title: WP Alexa Flash Briefing
Author: andrewfitz
Published: <strong>2018 年 12 月 2 日</strong>
Last modified: 2019 年 3 月 13 日

---

搜索插件

![](https://ps.w.org/wp-alexa-flash-briefing/assets/banner-772x250.png?rev=1984111)

**该插件尚未通过WordPress的最新3个主要版本进行测试**。 当与较新版本的WordPress一起
使用时，可能不再受到维护或支持，并且可能会存在兼容性问题。

![](https://ps.w.org/wp-alexa-flash-briefing/assets/icon-256x256.png?rev=1984111)

# WP Alexa Flash Briefing

 作者：[andrewfitz](https://profiles.wordpress.org/andrewfitz/)

[下载](https://downloads.wordpress.org/plugin/wp-alexa-flash-briefing.zip)

 * [详情](https://cn.wordpress.org/plugins/wp-alexa-flash-briefing/#description)
 * [评价](https://cn.wordpress.org/plugins/wp-alexa-flash-briefing/#reviews)
 * [开发进展](https://cn.wordpress.org/plugins/wp-alexa-flash-briefing/#developers)

 [支持](https://wordpress.org/support/plugin/wp-alexa-flash-briefing/)

## 描述

Alexa Flash Briefing Plugin for WordPress

This is a WordPress plugin that creates a new post type of “briefing” that lets 
you create Alexa Flash Briefing compatible posts just like you would anything else
in WordPress. It uses these posts to create a feed for Alexa skills through the 
API.

Create your briefings like regular posts. Here’s how it works to determine a text
to speech or audio file:

 * If you have ANY links/URLs in the post content, the plugin takes the FIRST link
   and uses it as the audio stream. It does not validate or catch errors!
 * If there’s no link in the post content, it will assume you want text to speech(
   but this must also be selected on your Amazon dev end too).

It is safest to just put a HTTPS url to your audio file, but you may add other text
in the post if you are also sending people to your site to listen. WordPress will
oembed the MP3 file you post, so users will be able to listen on the web.

### Alexa Usage

Use this URL for your Alexa skill:

    ```
    https://your-domain.com/wp-json/alexa-fb/v1/briefings/
    ```

That will post the latest briefing from all categories (1). To change the limit (
be advised Amazon’s limit is 5), use:

    ```
    /wp-json/alexa-fb/v1/briefings/?limit=5
    ```

If you want to create multiple feeds, use categories. Just add the category param
to the end point:

    ```
    /wp-json/alexa-fb/v1/briefings/?category=myflashbriefcat
    ```

This lets you use the same install for many feeds!

The feed API will cache in transients the result per category per limit for a default
of 1 hour. To change the cache time or turn off caching per feed, use the cache 
param. 0 turns off caching for that feed, 1 for 1 hour (default), 3 for 3 hours,
0.5 for 30 mins, etc.

Just add the cache param to the end point:

    ```
    /wp-json/alexa-fb/v1/briefings/?cache=0
    ```

All params can be used together.

### Notes

 * You MUST use a secure domain and secure links to your audio files (https for 
   the audio files and the feed URL).
 * Your briefing content shouldn’t contain any HTML tags if you want to use TTS (
   text to speech).
 * You can also draft and schedule briefings like regular posts.
 * You can use the excerpt and featured image options if you will be sharing your
   briefing on social media without interfering with Alexa functionality.

(This plugin is not associated with Amazon in any way.)

## 屏幕截图

 * [[
 * Make briefings just like posts

## 评价

![](https://secure.gravatar.com/avatar/66969e93a6aeb41236b9a67aeb97d34c7e9767ece48953327b24f2f029887c5d?
s=60&d=retro&r=g)

### 󠀁[Exactly what I was looking for](https://wordpress.org/support/topic/exactly-what-i-was-looking-for-404/)󠁿

 [barbarabax](https://profiles.wordpress.org/barbarabax/) 2019 年 7 月 20 日

Just a message for the developer: I’d like to see more documentation. But thanks
for this free and very useful plugin!

![](https://secure.gravatar.com/avatar/5e4ac16b820499934f8057666f1fbe3f10483b31ddb80553a17643a144b8f979?
s=60&d=retro&r=g)

### 󠀁[Works Great!!](https://wordpress.org/support/topic/works-great-5664/)󠁿

 [comedyplugs](https://profiles.wordpress.org/comedyplugs/) 2019 年 3 月 15 日

After a couple of issues that I had using it with multiple Alexa skills, the developer
was nice enough to go out of his way to immediately update the plug-in and help 
with any way he can – he went above and beyond even correcting an issue I had created
myself within Wordpress. Nice guy – wonderful plugin! A+++

![](https://secure.gravatar.com/avatar/3f31e8c9864a0e3c437673490311953b3e0162fd74efaa607585387f7ddb1b9f?
s=60&d=retro&r=g)

### 󠀁[Saves me hours of work a week](https://wordpress.org/support/topic/saves-me-hours-of-work-a-week/)󠁿

 [andrewfitz](https://profiles.wordpress.org/andrewfitz/) 2018 年 12 月 3 日

I am biased, of course, because I wrote it! But this has saved me hours of work 
a week with my flash briefings.

 [ 阅读所有2条评价 ](https://wordpress.org/support/plugin/wp-alexa-flash-briefing/reviews/)

## 贡献者及开发者

「WP Alexa Flash Briefing」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ andrewfitz ](https://profiles.wordpress.org/andrewfitz/)

[帮助将「WP Alexa Flash Briefing」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/wp-alexa-flash-briefing)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/wp-alexa-flash-briefing/)，
查看[SVN仓库](https://plugins.svn.wordpress.org/wp-alexa-flash-briefing/)，或通过
[RSS](https://plugins.trac.wordpress.org/log/wp-alexa-flash-briefing/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/wp-alexa-flash-briefing/)。

## 更新日志

2018-12-2 – v1.5
 -added banners and assets for wp.org

2018-09-21 – v1.4
 -changed feed output limit default from 5->1 -added limit API
endpoint param to change feed item amount

2018-09-18 – v1.3.3
 -added featured image capability -added excerpt capability -
spelling -removed custom taxonomy, used standard wordpress categories instead for
compatability

2018-09-17 – v1.2
 -added transient cache for API feed with category support

2018-09-17 – v1.1
 -Initial release

## 额外信息

 *  版本 **1.6.0**
 *  最后更新：**7 年前**
 *  活跃安装数量 **40+**
 *  WordPress 版本 ** 4.7 或更高版本 **
 *  已测试的最高版本为 **5.1.22**
 *  PHP 版本 ** 5.6 或更高版本 **
 *  语言
 * [English (US)](https://wordpress.org/plugins/wp-alexa-flash-briefing/)
 * 标签
 * [alexa](https://cn.wordpress.org/plugins/tags/alexa/)[amazon](https://cn.wordpress.org/plugins/tags/amazon/)
   [flash briefing](https://cn.wordpress.org/plugins/tags/flash-briefing/)[voice](https://cn.wordpress.org/plugins/tags/voice/)
 *  [高级视图](https://cn.wordpress.org/plugins/wp-alexa-flash-briefing/advanced/)

## 评级

 5 星（最高 5 星）。

 *  [  3 条 5 星评价     ](https://wordpress.org/support/plugin/wp-alexa-flash-briefing/reviews/?filter=5)
 *  [  0 条 4 星评价     ](https://wordpress.org/support/plugin/wp-alexa-flash-briefing/reviews/?filter=4)
 *  [  0 条 3 星评价     ](https://wordpress.org/support/plugin/wp-alexa-flash-briefing/reviews/?filter=3)
 *  [  0 条 2 星评价     ](https://wordpress.org/support/plugin/wp-alexa-flash-briefing/reviews/?filter=2)
 *  [  0 条 1 星评价     ](https://wordpress.org/support/plugin/wp-alexa-flash-briefing/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/wp-alexa-flash-briefing/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/wp-alexa-flash-briefing/reviews/)

## 贡献者

 *   [ andrewfitz ](https://profiles.wordpress.org/andrewfitz/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/wp-alexa-flash-briefing/)

## 捐助

您愿意支持这个插件的发展吗?

 [ 捐助此插件 ](https://www.paypal.me/andrewfitz)