前提・実現したいこと
PHPでTwitterOAthを使って、ツイートを感情分析させようとしています。
以下のエラ-メッセージがでました。
"var_dump($json);"で、$jsonに情報が入っていることは確認できたいのですが、
"$statuses = $json->statuses;"が動いておらず、 ステータスが取得できていないようです。
発生している問題・エラーメッセー ジ
Notice: Undefined property: stdClass::$statuses in /php_final/sentiment/main.php on line 38
該当のソースコード
php
1<?php 2 3 4// ini_set('display_errors', 1); 5// error_reporting(E_ALL); 6 7 8//set_time_limit(120); 9 10require_once('./config.php'); 11require_once('./feelings.php'); 12 13$dir = str_replace('batch', 'func', dirname(__FILE__)); 14 15 16require_once './vendor/autoload.php'; 17 18use Abraham\TwitterOAuth\TwitterOAuth; 19 20 21 22// create instance of TwitterOAuth . 23$obj = new TwitterOAuth(TWITTER_API_KEY, TWITTER_API_SECRET, ACCESS_TOKEN, ACCESS_SECRET); 24 25// get keyword. 26$keyword = $_GET["keyword"]; 27 28// q is search word, count is search number, lang is written language. result_type is wheather recent or not. count is number for serching. 29$options = array('q' => $keyword, 'result_type' => 'recent', 'count' => SEARCH_COUNT); 30 31$json = $obj->get("search/tweets", $options); 32 33$statuses = null; 34 35//var_dump($json); 36 37if ($json) { 38 $statuses = $json->statuses; // get status 39} 40 41var_dump($statuses); 42 43$sum_array = array( 44 'scores' => 0, 45 'positive_count' => 0, 46 'negative_count' => 0, 47); 48 49 50if ($statuses && is_array($statuses)) { 51 foreach ($statuses as $value) { 52 53 $feelings = new Feelings(PERMIT_ONLY_ADJECTIVE); 54 $data = $feelings->getAnalizedData($value->text); 55 56 $scores = $data['scores']; 57 $positive_count = $data['positive_count']; 58 $negative_count = $data['negative_count']; 59 60 $sum_array['scores'] = $scores + $sum_array['scores']; 61 $sum_array['positive_count'] = $positive_count + $sum_array['positive_count']; 62 $sum_array['negative_count'] = $negative_count + $sum_array['negative_count']; 63 64 // $sum_array['posi'][] = $data['posi']; 65 // $sum_array['nega'][] = $data['nega']; 66 67 } 68} 69 70//var_dump($sum_array); 71 72?> 73 74 75<!DOCTYPE html> 76<html> 77 78<head> 79 <meta charset="UTF-8"> 80 <title>test sentiment analysis</title> 81</head> 82 83<body> 84 85 <?php 86 87 echo "keyword : {$keyword}<br>"; 88 echo "score : {$sum_array['scores']} <br>"; 89 echo "positive word count : {$sum_array['positive_count']} <br>"; 90 echo "negative word count : {$sum_array['negative_count']} <br>"; 91 92 ?> 93 94</body> 95 96</html>
試したこと
"var_dump($json);"で、$jsonに情報が入っていることは確認できました。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー