Changeset 1035657
- Timestamp:
- 11/30/2014 09:54:17 PM (11 years ago)
- Location:
- wp-facebook-portal/trunk
- Files:
-
- 3 edited
-
libraries/facebook.php (modified) (2 diffs)
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-facebook-portal/trunk/libraries/facebook.php
r1000044 r1035657 36 36 * @var string 37 37 */ 38 public $requestUrl = 'https://graph.facebook.com/v2. 1';38 public $requestUrl = 'https://graph.facebook.com/v2.2'; 39 39 40 40 /** … … 199 199 if (empty($page_id)) return false; 200 200 201 $path = '/' . $page_id . '/ feed';201 $path = '/' . $page_id . '/posts'; 202 202 $params = array( 203 203 'fields' => 'id,message,created_time,type,link,object_id', -
wp-facebook-portal/trunk/plugin.php
r1000044 r1035657 6 6 Author: Yoshika (@rnsk) 7 7 Author URI: http://rnsk.net/ 8 Version: 2.3 8 Version: 2.3.1 9 9 License: GPL2 10 10 License URI: license.txt … … 39 39 * @var string 40 40 */ 41 const VERSION = '2.3 ';41 const VERSION = '2.3.1'; 42 42 43 43 /** -
wp-facebook-portal/trunk/readme.txt
r1000044 r1035657 4 4 Tags: Facebook, Facebook page, portal, feed 5 5 Requires at least: 3.5.1 6 Tested up to: 4.0 7 Stable tag: 2.3 6 Tested up to: 4.0.1 7 Stable tag: 2.3.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 66 66 == Changelog == 67 67 68 2.3.1 69 Facebook ページが投稿した記事のみ取得するよう修正 70 Facebook API v.2.2 に対応 71 WordPress 4.0.1 に対応 72 Modified to get only from Facebook page the posts. 73 Corresponded to the Facebook API v.2.2 74 Corresponded to the WordPress 4.0.1 75 68 76 2.3 69 77 Facebook API v.2.1 に対応
Note: See TracChangeset
for help on using the changeset viewer.