Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harugon/opengraph
MediaWiki にTwitter Card 、OpenGraphを追加します
https://github.com/harugon/opengraph
mediawiki mediawiki-extension opengraph php twitter
Last synced: about 2 months ago
JSON representation
MediaWiki にTwitter Card 、OpenGraphを追加します
- Host: GitHub
- URL: https://github.com/harugon/opengraph
- Owner: harugon
- License: mit
- Created: 2021-02-08T00:34:35.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-01T19:39:45.000Z (about 3 years ago)
- Last Synced: 2024-04-22T05:22:46.723Z (9 months ago)
- Topics: mediawiki, mediawiki-extension, opengraph, php, twitter
- Language: PHP
- Homepage:
- Size: 134 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenGraph
![MediawikiにOpenGraph](https://github.com/harugon/OpenGraph/blob/main/.gituhb/screenshot/opengraph.png?raw=true "OpenGraph")MediawikiにOpenGraph,Twitter Cardを追加します
## 依存する拡張
* [Extension:TextExtracts](https://www.mediawiki.org/wiki/Extension:TextExtracts/ja) 直接依存していませんが PageImagesが``og:image``,``twitter:image``を追加しています
* [Extension:PageImages](https://www.mediawiki.org/wiki/Extension:PageImages) TextExtractsを使用しmeta descriptionを追加します。## インストール
Composer でインストールします [composer.local.json](https://www.mediawiki.org/wiki/Composer#Using_composer-merge-plugin)
```bash
COMPOSER=composer.local.json composer require harugon/open-graph
```LocalSettings.php に下記を追記
```php
wfLoadExtension( 'OpenGraph' );
$wgOpenGraphTwitterSite = "";//Twitter
$wgOpenGraphFbAppId = "";//FbAppID
```## 設定
| 変数 | デフォルト | 説明 |
|-------------------------|------|------|
| $wgOpenGraphTwitterSite | "" | |
| $wgOpenGraphFbAppId | "" | |
| $wgOpenGraphFb | true |OpenGraphを追加する|
| $wgOpenGraphTw | true |TwitterCardを追加する|
| $wgOpenGraphNamespaces | [0] |追加する名前空間 |### メモ
* PageImageは標準名前空間にしか画像追加しない
* $wgPageImagesOpenGraphFallbackImage## link
* [The Open Graph protocol](https://ogp.me/)
* [カードの利用開始 \| Docs \| Twitter Developer](https://developer.twitter.com/ja/docs/tweets/optimize-with-cards/guides/getting-started)