如何实现“发送到kindle”关联?
我试图找出如何创建一个链接,将我网站上的当前页面/文章发送到用户的 Kindle 设备。我找不到太多关于它的信息,但我知道它可以完成,因为我在这里看到它: http://openlibrary.org/works/OL258709W/King_Henry_VI 和 Instapaper 提供此功能,请参见图片。有谁知道如何做到这一点,甚至从哪里开始?
我看过其他帖子问这个问题,但它们是不久前的,当时不是不可能,所以没有答案,现在有可能了。
I'm trying to find out how to create a link that will send the current page/article on my site to a users Kindle device. I haven't been able to find much about it, but I know it can be done because I see it here: http://openlibrary.org/works/OL258709W/King_Henry_VI and Instapaper offers this functionality, see image. Does anyone know how to do this, or even where to start?
I've seen other posts asking this question, but they were from a while ago and at the time it wasn't possible so there were no answers, now it's possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
每个注册的 Kindle 都有一个关联的电子邮件地址。用户可以通过电子邮件将文档发送到此地址,以将其复制到其 Kindle 设备和亚马逊的关联云存储中。
但是,默认情况下,只有与用户的亚马逊账户关联的电子邮件地址才会被列入白名单。您必须要求用户将您的电子邮件地址添加到他们的“批准的发件人”列表中。完成后,您只需要他们的 Kindle 电子邮件地址即可开始。
每个 Kindle 电子邮件地址都有两种变体:
@kindle.com
和@free.kindle.com
。@free.kindle.com
仅通过 Wi-Fi 传输文档,因此用户无需付费。如果您使用@kindle.com
电子邮件地址,则该地址可能会通过 3G 传输,但用户需付费。他们可以配置其设置以禁止这样做,但您应该小心,不要意外地将文档发送到该地址。Instapaper 的界面 是一个很好的示例,说明了如何做到这一点:
尽管长期以来一直向美国 Kindle 客户提供此服务,但国际支持已经变得更穷了。直到最近,加拿大根本不支持这一功能,即使是 Wi-Fi 传输也是如此。我不知道这是在哪里,目前不支持。
有关更多详细信息,例如支持的格式,请参阅 Amazon 支持文档Kindle 个人文档服务。
Each registered Kindle has an associated email address. Users can email documents to this address to copy them to their Kindle device and to Amazon's associated cloud storage.
However, by default only the email address associated with the user's Amazon account is whitelisted. You must ask the user to add your email address to their Approved Senders list. Once that's done you just need their Kindle email address and you're good to go.
Each Kindle email address has two variations:
@kindle.com
and@free.kindle.com
. The@free.kindle.com
will only transfer documents over Wi-Fi, so that the user is not charged. If you use the@kindle.com
email address, it may instead be transfered over 3G at a cost to the user. They can configure their settings to disallow this, but you should be careful not to send documents to this address unexpectedly.Instapaper's interface is a good example of how this could be done:
Although this has been offered to American Kindle customers for a long time, the international support has been poorer. Until recently this wasn't support in Canada at all, even for wi-fi transfers. I don't know where this is and is not currently supported.
For more details, such as the supported formats, please see the Amazon support document Kindle Personal Document Service.
似乎执行此操作的方法是将您想要阅读的文档附加到电子邮件中,然后通过电子邮件发送到您的
@kindle.com
电子邮件帐户。以下是 Amazon Kindle 支持页面的链接,描述了如何执行此操作:
http ://www.amazon.com/gp/help/customer/display.html?nodeId=200140600
It seems that the way to do this is to just email your
@kindle.com
email account with the document you want to read attached to the email.Here's a link to Amazon's Kindle support page describing how to do this:
http://www.amazon.com/gp/help/customer/display.html?nodeId=200140600
除了上面提到的电子邮件解决方案之外,亚马逊还提供了一个可设计样式的“发送到 Kindle”按钮,可以将其放入任何 html 页面中。在放入 Javascript 片段之前,您需要实现几种方法之一来识别页面中的内容区域,即自定义 CSS 选择器或 schema.org 表示法。
https://www.amazon.com/gp/sendtokindle/developers/button
尽管亚马逊最近似乎遇到了一些文档传递问题,但您可以在我的网站上查看它应该如何工作。
https://www.digitalbook.io/free-ebook.html#!/1fe895f5a2243070bbd6c01296fbbc8c/Peter%20Pan
如果有人可以在另一个网站上找到此按钮的工作示例,也许您可以提供一个链接这里。谢谢。
As well as the email solutions mentioned above, Amazon provides a stylable “Send to Kindle” button that can be dropped into any html page. Before dropping in their Javascript snippet, you’ll need to implement one of a few methods for identifying the content area in your page i.e custom CSS selectors or schema.org notation.
https://www.amazon.com/gp/sendtokindle/developers/button
You can see how it should work here on my site, although Amazon seem to be having some document delivery issues lately.
https://www.digitalbook.io/free-ebook.html#!/1fe895f5a2243070bbd6c01296fbbc8c/Peter%20Pan
If anyone can find a working example of this button on another site, perhaps you can provide a link here. Thanks.