Twitter follow button docs: suggest https instead of http (#3458)

This commit is contained in:
Ingo Blechschmidt 2018-11-29 12:10:30 +01:00 committed by Jeremy Ruston
parent 17232cfe91
commit ea91ab1632
1 changed files with 1 additions and 1 deletions

View File

@ -17,5 +17,5 @@ The only change from the version published at https://dev.twitter.com/docs/follo
Note that the src URL is given without a protocol (ie "http" or "https"). It's done this way so that it works on sites whether they are hosted on a HTTP or HTTPS domain. If you want the Twitter button to work while using a TiddlyWiki offline on a "file://" URL, then you'll need to manually add the protocol. For example:
```
<iframe allowtransparency="true" frameborder="0" scrolling="no" src="http://platform.twitter.com/widgets/follow_button.html?screen_name=jermolene" style="width:300px; height:20px;"></iframe>
<iframe allowtransparency="true" frameborder="0" scrolling="no" src="https://platform.twitter.com/widgets/follow_button.html?screen_name=jermolene" style="width:300px; height:20px;"></iframe>
```