Changeset 1859195
- Timestamp:
- 04/16/2018 03:57:29 PM (8 years ago)
- Location:
- tistorywriter/trunk
- Files:
-
- 3 edited
-
assets/pages/settingAdmin.php (modified) (1 diff)
-
features/api_manager.php (modified) (6 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tistorywriter/trunk/assets/pages/settingAdmin.php
r1846025 r1859195 147 147 $apiMgr = TistoryWriter::getManager(FEATURE_KEY\TISTORY_API); 148 148 149 if (method_exists('\\tistory_writer\\Logger', 'log')) {150 Logger::log("access token: " . $access_token);151 }152 153 149 if (isset($access_token) && $apiMgr->checkAccessToken()) { 154 150 echo $access_token; -
tistorywriter/trunk/features/api_manager.php
r1846025 r1859195 39 39 'access_token' => get_option(OPTION_KEY\ACCESS_TOKEN) 40 40 ); 41 $response = wp_remote_ post($url, array(41 $response = wp_remote_request($url, array( 42 42 'body' => $data, 43 43 'output' => 'xml', … … 59 59 'access_token' => get_option(OPTION_KEY\ACCESS_TOKEN) 60 60 ); 61 $response = wp_remote_ post($url, array(61 $response = wp_remote_request($url, array( 62 62 'body' => $data, 63 63 'output' => 'xml', … … 77 77 'targetUrl' => get_option(OPTION_KEY\BLOG_NAME), 78 78 ); 79 $response = wp_remote_ post($url, array(79 $response = wp_remote_request($url, array( 80 80 'body' => $data, 81 81 'output' => 'xml', … … 171 171 'sort' => 'date', 172 172 ); 173 $response = wp_remote_ post($url, array(173 $response = wp_remote_request($url, array( 174 174 'body' => $data, 175 175 'output' => 'xml', … … 211 211 ); 212 212 213 $response = wp_remote_ post($url, array(213 $response = wp_remote_request($url, array( 214 214 'body' => $data, 215 215 'output' => 'xml', … … 231 231 ); 232 232 233 $response = wp_remote_ post($url, array(233 $response = wp_remote_request($url, array( 234 234 'body' => $data, 235 235 'output' => 'xml', -
tistorywriter/trunk/readme.txt
r1847037 r1859195 4 4 Tags: content, tistory, development, integration 5 5 Requires at least: 1.5 6 Tested up to: 4. 9.47 Stable tag: 1. 06 Tested up to: 4.1.1 7 Stable tag: 1.3 8 8 License: MIT License 9 9 License URI: https://mit-license.org/ … … 22 22 * 태그 설정 23 23 * 댓글 허용 권한 설정 24 25 문의가 있으신 분께서는 sukbeom.kim@gmail.com 으로 메일주시거나 github.com/seokbeomKim/TistoryWriter 주소로 이슈등록 해주시면 감사하겠습니다.26 24 27 25 == Installation == … … 44 42 45 43 == Changelog == 44 = 1.1 = 45 * 티스토리 연동 문제 수정 46 46 47 = 1.0 = 47 48 * 기본 기능 구현 및 최초 배포
Note: See TracChangeset
for help on using the changeset viewer.