2013年11月4日月曜日

Twitterリミッ

Twitterリミッ
https://support.twitter.com/articles/249071-twitter-apidm


現在のTwitterリミット
現時点でのアカウント毎の技術的なリミットは以下の通りです。

ダイレクトメッセージ:250件/1日
ツイート:1,000件/1日。1日あたりのリミットは、更に細かい1時間に2回間隔のリミットに分かれます。リツイートも、ツイートとして数に考慮されます。
登録メールアドレスの変更:4回/1時間
フォロー(1日):1,000件/1日。これはあくまでも技術的なリミットであり、これ以外に過剰なフォローを禁止するルールがあります。フォローリミットについての詳細は、「フォローに関するルールと留意点」をご覧ください。
フォロー(アカウント毎):2,000件を超えるフォローは、アカウント毎の特定の比率に基づき制限されます。詳細は、「フォローに関するルールと留意点」をご覧ください。
これらのリミットは、ウェブ、モバイル、電話、API等を含む、すべてのデバイスからの操作を含みます。すべてのサードパーティのアプリケーションからのAPIリクエストは、1時間毎のAPIリミットとは別にトラックされます。アカウントを複数のサードパーティアプリケーションでご利用の場合は、APIリミットにかかりやすくなりますことご理解ください。詳細は「APIレートリミット」をご覧ください。

これらのリミットは、サイト利用が多い期間中に一時的に下げる場合があります。その場合は、Twitterステータスブログでご案内致します

iTunes Search API

iTunes  Search API

http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html




2013年10月27日日曜日

ページをリロード

ページをリロード

<script type="text/javascript">
var timer = "10000";
function ReloadAddr(){
window.location.reload();
}
setTimeout(ReloadAddr, timer);
</script>

2013年10月14日月曜日

PHP JSON header('Access-Control-Allow-Origin: *') 出力

PHP JSON 出力して、異なるクライアントをアクセスするにはサーバー側に
header('Access-Control-Allow-Origin: *'); 設定が必要に成ります。


  header('Access-Control-Allow-Origin: *');
  echo $test=json_encode($this->items);

Chrome  アクセス可能
Firefox   アクセス可能

2013年10月6日日曜日

setInterval 動かない

動く     setInterval(function(){mf_getymg();},10000);
動く     setInterval(mf_getymg,10000);
動かない  setInterval(mf_getymg(),10000);
動く           setInterval('tt()',3000);   クォーテーションで括る

function mf_getymg(){
var getmg=new XMLHttpRequest();
getmg.onreadystatechange=function(){
if (getmg.readyState==4 && getmg.status==200){
mf_test(eval(getmg.responseText));
}
}
getmg.open('GET','http://192.168.11.10/YahooAPI/List.php',true);
getmg.send(null);
}

function mf_test(mg){
var newli=document.createElement('li');
newli.innerHTML=mg;
var ul=document.getElementById('test');
ul.appendChild(newli);
}



クォーテーションで括る
<script type="text/javascript">

var x=0;
setInterval('tt()',3000);
function tt(){
x=x+1;
alert(x);
}

</script>

2013年10月5日土曜日

mb_strimwidth 文字化け

変更前
echo mb_strimwidth($temp->Result->Content.'   (知恵袋)',0,280);

変更後
echo mb_strimwidth($temp->Result->Content.'   (知恵袋)',0,280,',',UTF8);

GET friendships/outgoing

<?php
include_once('../oauth/start.php');
/*
Friends & Followers
GET friendships/outgoing
https://dev.twitter.com/docs/api/1.1/get/friendships/outgoing
HTTP Methods GET

http://www.tryphp.net/2012/01/24/phpapptwitter-friendships_outgoing/
認証ユーザー(自分)がフォローリクエストを送信しているユーザーのうち、認証保留中になっているユーザーID一覧(整数値)を配列で返します。配列は構造化されたデータです。

 */

echo '<pre>';
$apiurl='https://api.twitter.com/1.1/friendships/outgoing.json';
$HTTP_Methods='GET';
$paras['cursor']='';
$paras['stringify_ids']='';

$x->twoauth($HTTP_Methods,$apiurl,$paras);
//$x->send_curl();
//var_dump($x->send_curl());
print_r($x->send_curl());

?>




Array
(
    [0] => stdClass Object
        (
            [name] => 秋葉原観察者
            [screen_name] => akibaviwer
            [id] => 122061980
            [id_str] => 122061980
            [connections] => Array
                (
                    [0] => following_requested
                )

        )

    [1] => stdClass Object
        (
            [name] => ヤマダ電機
            [screen_name] => yamada_official
            [id] => 104421866
            [id_str] => 104421866
            [connections] => Array
                (
                    [0] => following_requested
                )

        )

    [2] => stdClass Object
        (
            [name] => UZ Plant〜サザンは日本の文化〜
            [screen_name] => masyaglay
            [id] => 234254127
            [id_str] => 234254127
            [connections] => Array
                (
                    [0] => following_requested
                )

        )

    [3] => stdClass Object
        (
            [name] => ##%;p;%##
            [screen_name] => p15973736
            [id] => 956344374
            [id_str] => 956344374
            [connections] => Array
                (
                    [0] => following_requested
                )

        )

    [4] => stdClass Object
        (
            [name] => stank
            [screen_name] => herumosa123
            [id] => 733950067
            [id_str] => 733950067
            [connections] => Array
                (
                    [0] => following_requested
                )

        )

    [5] => stdClass Object
        (
            [name] => 人生詰んでレラガールズ劇場
            [screen_name] => ohpansy
            [id] => 543740099
            [id_str] => 543740099
            [connections] => Array
                (
                    [0] => following_requested
                )

        )

    [6] => stdClass Object
        (
            [name] => ユキテーヌ
            [screen_name] => yukitaine
            [id] => 120747330
            [id_str] => 120747330
            [connections] => Array
                (
                    [0] => none
                )

        )

)