diff --git a/example/cluster_node.json b/example/cluster_node.json
new file mode 100644
index 000000000..581b88070
--- /dev/null
+++ b/example/cluster_node.json
@@ -0,0 +1,7 @@
+[
+ {
+ "node": 1,
+ "host":"127.0.0.1",
+ "port":42345
+ }
+]
\ No newline at end of file
diff --git a/example/config.json b/example/config.json
deleted file mode 100644
index 1cbeba402..000000000
--- a/example/config.json
+++ /dev/null
@@ -1,12 +0,0 @@
-[
- {
- "node": 9,
- "host":"127.0.0.1",
- "port":42345
- },
- {
- "node": 10,
- "host":"127.0.0.1",
- "port":42346
- }
-]
\ No newline at end of file
diff --git a/example/dataset.lua b/example/dataset.lua
deleted file mode 100644
index b8925cd72..000000000
--- a/example/dataset.lua
+++ /dev/null
@@ -1,170 +0,0 @@
-local DATA_TYPE_BASE = 1
-local DATA_TYPE_ARRAY = 2
-local DATA_TYPE_OBJ_ARRAY = 3
-local DATA_TYPE_MAP = 4
-
-local OP_GET = 1
-local OP_SET = 2
-
-local op_record = {}
-
-op_record.__index = op_record
-
-function op_record.new()
- local o = {record = {}}
- return setmetatable(o, op_record)
-end
-
-function op_record:insert(...)
- table.insert(self.record, ...)
-end
-
-function op_record:clear()
- self.record = {}
-end
-
-local object = {}
-
-object.__index = object
-
-local array = {}
-
-array.__index = array
-
-local object_array = {}
-
-object_array.__index = object_array
-
-local object_map = {}
-
-object_map.__index = object_map
-
-------------------------------------------------------
-function object.new(op)
- local o = {}
- o.__op = op
- return setmetatable(o, object)
-end
-
-function object:open_record()
- if not self.__op then
- self.__op = op_record.new()
- end
-end
-
-function object:record()
- return self.__op.record
-end
-
-function object:clear_record()
- return self.__op:clear()
-end
-
-function object:set(key, value)
- self[key.id] = value
- if self.__op then
- self.__op:insert({OP_SET, key, value})
- end
-end
-
-function object:get(key)
- local t = self[key.id]
- if not t then
- if key.type == DATA_TYPE_ARRAY then
- t = array.new(self.__op)
- elseif key.type == DATA_TYPE_OBJ_ARRAY then
- t = object_array.new(self.__op)
- end
- self[key.id] = t
- end
- if self.__op then
- self.__op:insert({OP_GET, key})
- end
- return t
-end
-
-------------------------------------------------------
-
-------------------------------------------------------
-function array.new(op)
- local o = {}
- o.__op = op
- return setmetatable(o, array)
-end
-
-function array:set(index, value)
- assert(index <= #self + 1)
- self[index] = value
- if self.__op then
- self.__op:insert({OP_SET, index, value})
- end
-end
-
-function array:get(index)
- assert(index <= #self + 1)
- return self[index]
-end
-
-function array:has(value)
- for _,v in pairs(self) do
- if value == v then
- return true
- end
- end
- return false
-end
-
-------------------------------------------------------
-------------------------------------------------------
-
-function object_array.new(op)
- local o = {}
- o.__op = op
- return setmetatable(o, object_array)
-end
-
-function object_array:get(index)
- assert(index <= #self + 1)
- local o = self[index]
- if not o then
- o = object.new(self.__op)
- self[index] = o
- end
- if self.__op then
- self.__op:insert({OP_GET, index})
- end
- return o
-end
-
-------------------------------------------------------
-------------------------------------------------------
-
-function object_map.new(op)
- local o = {}
- o.__op = op
- return setmetatable(o, object_map)
-end
-
-function object_map:get(key)
- local o = self[key]
- if not o then
- o = object.new(self.__op)
- self[key] = o
- end
- if self.__op then
- self.__op:insert({OP_GET, key})
- end
- return o
-end
-
-------------------------------------------------------
-
-return {
- object = object,
- DATA_TYPE_BASE = DATA_TYPE_BASE,
- DATA_TYPE_ARRAY = DATA_TYPE_ARRAY,
- DATA_TYPE_OBJ_ARRAY = DATA_TYPE_OBJ_ARRAY,
- DATA_TYPE_MAP = DATA_TYPE_MAP,
- OP_GET = OP_GET,
- OP_SET = OP_SET,
-}
diff --git a/example/example_callback.lua b/example/example_callback.lua
deleted file mode 100644
index 8278eed3a..000000000
--- a/example/example_callback.lua
+++ /dev/null
@@ -1,70 +0,0 @@
-local moon = require("moon")
-
-local conf = ...
-
-if conf and conf.receiver then
- -----------------------------THIS IS RECEIVER SERVICE-------------------
- local command = {}
-
- command.PING = function(sender, ...)
- print(moon.name, "recv ", sender, "command", "PING")
- print(moon.name, "send to", sender, "command", "PONG")
- moon.send('lua', sender,'PONG', ...)
- end
-
- local function docmd(sender,header,...)
- -- body
- local f = command[header]
- if f then
- f(sender,...)
- else
- error(string.format("Unknown command %s", tostring(header)))
- end
- end
-
- moon.dispatch('lua',function(sender, session, cmd, ...)
- local f = command[cmd]
- if f then
- f(sender,...)
- else
- error(string.format("Unknown command %s", tostring(cmd)))
- end
- end)
-
- print("callback example: service receiver start")
-else
- -----------------------------THIS IS SENDER SERVICE-------------------
- local command = {}
-
- command.PONG = function(...)
- print(...)
- print(moon.name, "recv ", "command", "PING")
- moon.exit(-1)
- end
-
- moon.dispatch('lua',function(sender, session, cmd, ...)
- local f = command[cmd]
- if f then
- f(...)
- else
- error(string.format("Unknown command %s", tostring(cmd)))
- end
- end)
-
- print("callback example: service sender start")
-
- moon.async(function()
- local receiver = moon.new_service("lua", {
- name = "callback_receiver",
- file = "example_callback.lua",
- receiver = true
- })
-
- print(moon.name, "send to", receiver, "command", "PING")
- moon.send('lua', receiver,"PING","Hello")
- end)
-end
-
-
-
-
diff --git a/example/example_cluster.lua b/example/example_cluster.lua
new file mode 100644
index 000000000..895a4d96b
--- /dev/null
+++ b/example/example_cluster.lua
@@ -0,0 +1,236 @@
+-- define lua module search dir
+local path = table.concat({
+ "../lualib/?.lua",
+ "../service/?.lua",
+},";")
+
+package.path = path.. ";"
+
+
+local moon = require("moon")
+
+moon.env("PATH", string.format("package.path='%s'", package.path))
+
+local conf = ...
+
+local function run_cluster_etc()
+ local json = require("json")
+ local httpserver = require("moon.http.server")
+
+ httpserver.content_max_len = 8192
+ httpserver.header_max_len = 8192
+
+ httpserver.error = function(fd, err)
+ moon.warn(fd," disconnected:", err)
+ end
+
+ local cluster_etc
+
+ local function load_cluster_etc()
+ cluster_etc = {}
+ local res = json.decode(io.readfile(conf.config))
+ for _,v in ipairs(res) do
+ cluster_etc[v.node] = v
+ end
+ end
+
+ load_cluster_etc()
+
+ httpserver.on("/reload",function(request, response)
+ load_cluster_etc()
+ response.status_code = 200
+ response:write_header("Content-Type","text/plain")
+ response:write("OK")
+ end)
+
+ httpserver.on("/cluster",function(request, response)
+ local query = request.parse_query()
+ local node = tonumber(query.node)
+ local cfg = cluster_etc[node]
+ if not cfg or not cfg.host or not cfg.port then
+ response.status_code = 404
+ response:write_header("Content-Type","text/plain")
+ response:write("cluster node not found "..tostring(query.node))
+ return
+ end
+ response.status_code = 200
+ response:write_header("Content-Type","application/json")
+ response:write(json.encode({host = cfg.host, port = cfg.port}))
+ end)
+
+ httpserver.listen(conf.host, conf.port, conf.timeout)
+ print("Cluster etc http server start", conf.host, conf.port)
+
+ moon.shutdown(function()
+ moon.quit()
+ end)
+end
+
+
+local function run_cluster_receiver()
+
+ local command = {}
+
+ command.ADD = function(a,b)
+ return a+b
+ end
+
+ command.SUB = function(a,b)
+ return a-b
+ end
+
+ command.MUL = function(a,b)
+ return a*b
+ end
+
+ command.ACCUM = function(...)
+ local numbers = {...}
+ local total = 0
+ for _,v in pairs(numbers) do
+ total = total + v
+ end
+ return total
+ end
+
+ local count = 0
+ local tcount = 0
+ local bt = 0
+ command.COUNTER = function(t)
+ -- print(...)
+ count = count + 1
+ if bt == 0 then
+ bt = t
+ end
+ tcount = tcount + 1
+
+ if count == 10000 then
+ print("per", (t-bt))
+ count = 0
+ bt = 0
+ end
+ end
+
+ -- moon.async(function()
+ -- while true do
+ -- moon.sleep(1000)
+ -- print(tcount)
+ -- end
+ -- end)
+
+
+ moon.dispatch('lua',function(sender, session, CMD, ...)
+ local f = command[CMD]
+ if f then
+ if CMD ~= 'ADD' then
+ --moon.sleep(20000)
+ moon.response('lua',sender, session,f(...))
+ end
+ else
+ error(string.format("Unknown command %s", tostring(CMD)))
+ end
+ end)
+end
+
+local function run_cluster_sender()
+
+ local cluster = require("cluster")
+
+ local counter = 0
+
+ moon.async(function()
+ while true do
+ moon.sleep(1000)
+ print("per sec ",counter)
+ counter=0
+ end
+ end)
+
+ local args = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16}
+ moon.async(function()
+
+ print(cluster.call(1, 'cluster_receiver', "ACCUM", table.unpack(args)))
+ for i=1,100000 do
+ cluster.send(1, 'cluster_receiver',"COUNTER", moon.now())
+ end
+
+ while true do
+ local ret ,err = cluster.call(1, 'cluster_receiver', "ACCUM", table.unpack(args))
+ if not ret then
+ print(err)
+ return
+ end
+ counter=counter+1
+ end
+ end)
+
+end
+
+if conf.name == "cluster_etc" then
+ run_cluster_etc()
+ return
+elseif conf.name == 'cluster_receiver' then
+ run_cluster_receiver()
+ return
+elseif conf.name == 'cluster_sender' then
+ run_cluster_sender()
+ return
+end
+
+local services = {
+ {
+ unique = true,
+ name = "cluster_etc",
+ file = "example_cluster.lua",
+ host = "127.0.0.1",
+ port = 40001,
+ config = "cluster_node.json"
+ },
+ {
+ unique = true,
+ name = "cluster",
+ file = "../service/cluster.lua",
+ host = "127.0.0.1",
+ port = 42345,
+ etc_host = "127.0.0.1:40001",
+ etc_path = "/cluster"
+ },
+ {
+ unique = true,
+ name = "cluster_receiver",
+ file = "example_cluster.lua"
+ },
+ {
+ unique = true,
+ name = "cluster_sender",
+ file = "example_cluster.lua"
+ }
+}
+
+local addrs = {}
+moon.async(function ()
+
+ moon.env("NODE", "1")
+
+ for _, cfg in ipairs(services) do
+ local service_type = conf.service_type or "lua"
+ local addr = moon.new_service(service_type, cfg)
+ if 0 == addr then
+ moon.exit(-1)
+ return
+ end
+ table.insert(addrs, addr)
+
+ if cfg.name == "cluster" then
+ print(moon.co_call("lua", moon.queryservice("cluster"), "Start"))
+ end
+ end
+end)
+
+moon.shutdown(function()
+ moon.async(function()
+ for _, addr in ipairs(addrs) do
+ moon.kill(addr)
+ end
+ moon.quit()
+ end)
+end)
\ No newline at end of file
diff --git a/example/example_coroutine.lua b/example/example_coroutine.lua
deleted file mode 100644
index b33313d3c..000000000
--- a/example/example_coroutine.lua
+++ /dev/null
@@ -1,45 +0,0 @@
-local moon = require("moon")
-local conf = ...
-
-if conf and conf.receiver then
- local command = {}
-
- command.PING = function(sender,sessionid, ...)
- print(moon.name, "recv ", sender, "command", "PING")
- print(moon.name, "send to", sender, "command", "PONG")
- -- 把sessionid发送回去,发送方resume对应的协程
- moon.response("lua",sender,sessionid,'PONG', ...)
- end
-
- command.TEST = function(sender,sessionid)
- moon.response("lua", sender, sessionid)
- end
-
- moon.dispatch('lua',function(sender, session, cmd, ...)
- -- sessionid 对应表示发送方 挂起的协程
- local f = command[cmd]
- if f then
- f(sender,session,...)
- else
- error(string.format("Unknown command %s", tostring(cmd)))
- end
- end)
-
-else
- moon.async(function()
- local receiver = moon.new_service("lua", {
- name = "example_coroutine",
- file = "example_coroutine.lua",
- receiver = true
- })
-
- print(moon.name, "call ", receiver, "command", "PING")
- print(moon.co_call("lua", receiver, "PING", "Hello"))
-
- moon.exit(-1)
- end)
-end
-
-
-
-
diff --git a/example/example_dataset.lua b/example/example_dataset.lua
deleted file mode 100644
index 5fbd4c30d..000000000
--- a/example/example_dataset.lua
+++ /dev/null
@@ -1,61 +0,0 @@
-local moon= require("moon")
-local dataset = require("dataset")
-
-local Layer1 =
-{
- field1 = {id = 1, type = dataset.DATA_TYPE_BASE},
- field2 = {id = 2, type = dataset.DATA_TYPE_BASE},
- test2 = {id = 3, type = dataset.DATA_TYPE_OBJ_ARRAY},
-}
-
-local Layer2 =
-{
- field1 = {id = 1, type = dataset.DATA_TYPE_BASE},
- field2 = {id = 2, type = dataset.DATA_TYPE_BASE},
- field3 = {id = 3, type = dataset.DATA_TYPE_ARRAY},
-}
-
-local root = dataset.object.new()
-root:open_record()
-root:set(Layer1.field1,123)
-root:set(Layer1.field2,456)
-local test2 = root:get(Layer1.test2)
-local o1 = test2:get(1)
-o1:set(Layer2.field1,678)
-o1:set(Layer2.field2,897)
-local f3 = o1:get(Layer2.field3)
-f3:set(1,1)
-f3:set(2,2)
-f3:set(3,3)
-f3:set(4,4)
-
---another dataset
-local root2 = dataset.object.new()
-
--- set by record
-local tmp = root2
-for _,op in pairs(root:record()) do
- if op[1] == dataset.OP_SET then
- tmp:set(op[2],op[3])
- elseif op[1] == dataset.OP_GET then
- tmp = tmp:get(op[2])
- end
-end
-root:clear_record()
-print_r(root2)
-
-root:get(Layer1.test2):get(1):get(Layer2.field3):set(1,99)
-
--- update by record
-local tmp = root2
-for _,op in pairs(root:record()) do
- if op[1] == dataset.OP_SET then
- tmp:set(op[2],op[3])
- elseif op[1] == dataset.OP_GET then
- tmp = tmp:get(op[2])
- end
-end
-
-print_r(root2)
-
-moon.exit(-1)
diff --git a/example/example_http.lua b/example/example_http.lua
index c36988aa8..ae5aeb00b 100644
--- a/example/example_http.lua
+++ b/example/example_http.lua
@@ -31,7 +31,7 @@ end)
http_server.listen("127.0.0.1",8001)
print("http_server start", "127.0.0.1",8001)
-
+--- use http proxy
-- moon.async(function ()
-- print_r(httpc.get("www.google.com:443"),{
-- proxy = "127.0.0.1:8443"
diff --git a/example/example_json.lua b/example/example_json.lua
deleted file mode 100644
index ad69108e5..000000000
--- a/example/example_json.lua
+++ /dev/null
@@ -1,222 +0,0 @@
-local moon = require("moon")
-local json = require("json")
-
-do
- local double = 2 ^ 53
- print(json.encode(double))
- assert(json.encode(double)=="9007199254740992")
- assert(json.decode(json.encode(double))==double)
-end
-
-do
- local t1 = {}
- t1[4] = "d"
- t1[2] = "b"
- t1[3] = "c"
- t1[1] = "a"
- local str = json.encode(t1) --["a","b","c","d"]
- print(str)
- assert(string.sub(str,1,1)=="[")
- local t2 = json.decode(str)
- assert(#t2==4)
- assert(t2[1]=="a")
- assert(t2[2]=="b")
- assert(t2[3]=="c")
- assert(t2[4]=="d")
-end
-
-do
- local t1 = {[4] = "d", [2]="b", [3]="c", [1]="a"}
- local str = json.encode(t1) --["a","b","c","d"]
- print(str)
- assert(string.sub(str,1,1)=="[")
- local t2 = json.decode(str)
- assert(#t2==4)
- assert(t2[1]=="a")
- assert(t2[2]=="b")
- assert(t2[3]=="c")
- assert(t2[4]=="d")
-end
-
-do
- local t1 = {}
- table.insert(t1,"a")
- table.insert(t1,"b")
- table.insert(t1,"c")
- table.insert(t1,"d")
- local str = json.encode(t1) --["a","b","c","d"]
- print(str)
- assert(string.sub(str,1,1)=="[")
- local t2 = json.decode(str)
- assert(#t2==4)
- assert(t2[1]=="a")
- assert(t2[2]=="b")
- assert(t2[3]=="c")
- assert(t2[4]=="d")
-end
-
-do
- local t1 = {"a","b","c","d"}
- local str = json.encode(t1) --["a","b","c","d"]
- print(str)
- assert(string.sub(str,1,1)=="[")
- local t2 = json.decode(str)
- assert(#t2==4)
- assert(t2[1]=="a")
- assert(t2[2]=="b")
- assert(t2[3]=="c")
- assert(t2[4]=="d")
-end
-
-do
- local t1 = {"a","b",[5]="c","d", e={
- w = 1,
- x = 2
- }}
- local str = json.encode(t1) --{"1":"a","2":"b","3":"d","5":"c"}
- print(str)
- assert(string.sub(str,1,1)=="{")
- local t2 = json.decode(str)
- assert(t2[1]=="a")
- assert(t2[2]=="b")
- assert(t2[5]=="c")
- assert(t2[3]=="d")
-end
-
-do
- local t1 = {[1] = "a", [2] = "b",[100] = "c",}
- local str = json.encode(t1) --{"1":"a","2":"b","100":"c"}
- print(str)
- assert(string.sub(str,1,1)=="{")
- local t2 = json.decode(str)
- assert(t2[1]=="a")
- assert(t2[2]=="b")
- assert(t2[100]=="c")
-end
-
-do
- local t1 = {["a"]=1,["b"]=2,["c"] =3}
- local str = json.encode(t1) -- {"b":2,"c":3,"a":1}
- print(str)
- assert(string.sub(str,1,1)=="{")
- local t2 = json.decode(str)
- assert(t2["a"]==1)
- assert(t2["b"]==2)
- assert(t2["c"]==3)
-end
-
-do
- local t1 = {[100] = "a", [200] = "b",[300] = "c",}
- local str = json.encode(t1) -- {"300":"c","100":"a","200":"b"}
- print(str)
- assert(string.sub(str,1,1)=="{")
- local t2 = json.decode(str)
- assert(t2[100]=="a")
- assert(t2[200]=="b")
- assert(t2[300]=="c")
-end
-
-do
- local t1 = {["1.0"]=1,["2.0"]=2,["3.0"] =3}
- local str = json.encode(t1) -- {"1.0":1,"3.0":3,"2.0":2}
- print(str)
- assert(string.sub(str,1,1)=="{")
- local t2 = json.decode(str)
- assert(t2["1.0"]==1)
- assert(t2["2.0"]==2)
- assert(t2["3.0"]==3)
-end
-
-do
- local t1 = {["100abc"]="hello"}
- local str = json.encode(t1) -- {"100abc":"hello"}
- print(str)
- assert(string.sub(str,1,1)=="{")
- local t2 = json.decode(str)
- assert(t2["100abc"]=="hello")
-end
-
-do
- ---issue case: try convert string key to integer
- local t1 = {["1"]=1,["2"]=2,["3"] =3}
- local str = json.encode(t1) -- {"1":1,"2":2,"3":3}
- print(str)
- assert(string.sub(str,1,1)=="{")
- local t2 = json.decode(str)
- assert(t2[1]==1)
- assert(t2[2]==2)
- assert(t2[3]==3)
-
- str = json.encode(t2) -- [1,2,3]
- assert(string.sub(str,1,1)=="[")
-end
-
-
-
-do
- local sql = {
- "insert into shop(id, details) values (",
- 101,
- ",'",
- {name="hello",price=120.3},
- "');"
- }
- --optimize lua GC: Auto encode table as json, an return ligthtuserdata, then use socket api send it.
- local pointer = json.concat(sql)
- local buffer = require("buffer")
- print(buffer.unpack(pointer))
- buffer.delete(pointer)
- --insert into shop(id, details) values (101,'{"price":120.3,"name":"hello"}');
-end
-
-do
- local pointer = json.concat_resp("set","hello", {
- a=1,b=2,c={
- a=1,b=2
- }
- })
- local buffer = require("buffer")
- print(buffer.unpack(pointer))
- buffer.delete(pointer)
-end
-
-do
- local ok, err = xpcall(json.encode, debug.traceback, {a=function ()
- end})
- print(ok, err)
-end
-
-do
- local ok, err = xpcall(json.concat, debug.traceback, {function ()
- end})
- print(ok, err)
-end
-
-do
- local ok, err = xpcall(json.concat_resp, debug.traceback, {function ()
- end})
- print(ok, err)
-end
-
-do
- local null_as_userdata = true
- local t = {nil,nil,nil, 100}
- assert(string.sub(json.encode(t),1,1)=="[")
- assert(#json.decode(json.encode(t), null_as_userdata) == 4)
- local t2 = json.decode(json.encode(t), null_as_userdata)
- assert(t2[1]==json.null)
- assert(t2[2]==json.null)
- assert(t2[3]==json.null)
- assert(t2[4]==100)
-end
-
--- do
--- local str = io.readfile([[twitter.json]])
--- local null_as_userdata = true
--- local t = json.decode(str, null_as_userdata)
--- local empty_as_array = true
--- local pertty = true
--- io.writefile("twitter-out.json", json.encode(t, empty_as_array, pertty))
--- end
-
-moon.exit(100)
diff --git a/example/start_by_config/sharetable_example_dir.lua b/example/example_sharetable.lua
similarity index 80%
rename from example/start_by_config/sharetable_example_dir.lua
rename to example/example_sharetable.lua
index dc5901fca..ff181dec0 100644
--- a/example/start_by_config/sharetable_example_dir.lua
+++ b/example/example_sharetable.lua
@@ -1,6 +1,17 @@
+-- custom lua module search dir
+local path = table.concat({
+ "../lualib/?.lua",
+ "../service/?.lua",
+},";")
+
+package.path = path.. ";"
+
local moon = require("moon")
+
+moon.env("PATH", string.format("package.path='%s'", package.path))
+
local sharetable = require("sharetable")
-local conf = ... or {}
+local conf = ...
local name = "sharedata"
@@ -70,7 +81,7 @@ else
"lua",
{
name = "agent",
- file = "start_by_config/sharetable_example_dir.lua",
+ file = "example_sharetable.lua",
agent = true
}
)
@@ -79,11 +90,13 @@ else
io.writefile("./table/"..name..".lua", content_new)
print(sharetable.loadfile(name..".lua"))
+ require("fs").remove("./table/"..name..".lua")
+
print(moon.co_call("lua", agent, "UPDATE"))
moon.kill(agent)
- moon.exit(-1)
- -- moon.kill(moon.queryservice("sharetable"))
+ moon.sleep(1000)
+ moon.kill(moon.queryservice("sharetable"))
+ moon.exit(0)
end)
-end
-
+end
\ No newline at end of file
diff --git a/example/game/service_gate.lua b/example/game/service_gate.lua
new file mode 100644
index 000000000..14d44b365
--- /dev/null
+++ b/example/game/service_gate.lua
@@ -0,0 +1,89 @@
+local moon = require("moon")
+local seri = require("seri")
+local socket = require("moon.socket")
+
+local conf = ...
+
+local redirect = moon.redirect
+
+---@class gate_context
+local context = {
+ conf = conf,
+ uid_map = {},
+ fd_map = {},
+ auth_watch = {},
+ ---other service address
+ addr_auth = 0,
+}
+
+socket.on("accept", function(fd, msg)
+ print("GAME SERVER: accept ", fd, moon.decode(msg, "Z"))
+ socket.set_enable_chunked(fd, "w")
+ --socket.settimeout(fd, 60)
+end)
+
+socket.on("message", function(fd, msg)
+ -- local c = context.fd_map[fd]
+ -- if not c then
+ -- ---first message must be auth message
+ -- context.auth_watch[fd] = tostring(msg)
+ -- local name, req = protocol.decode(moon.decode(msg,"B"))
+ -- req.sign = context.auth_watch[fd]
+ -- req.fd = fd
+ -- req.addr = socket.getaddress(fd)
+ -- moon.send("lua", context.addr_auth, name, req)
+ -- else
+ -- if moon.DEBUG() then
+ -- protocol.print_message(c.uid, msg)
+ -- end
+ -- redirect(msg, "", c.addr_user, PTYPE_C2S, 0, 0)
+ -- end
+end)
+
+socket.on("close", function(fd, msg)
+ local data = moon.decode(msg, "Z")
+ context.auth_watch[fd] = nil
+ local c = context.fd_map[fd]
+ if not c then
+ print("GAME SERVER: close", fd, data)
+ return
+ end
+ context.fd_map[fd] = nil
+ context.uid_map[c.uid] = nil
+ moon.send('lua', context.addr_auth, "Auth.Disconnect", c.uid)
+ print("GAME SERVER: close", fd, c.uid, data)
+end)
+
+moon.register_protocol({
+ name = "S2C",
+ PTYPE = 101,
+ dispatch = nil
+})
+
+moon.register_protocol({
+ name = "SBC",
+ PTYPE = 102,
+ dispatch = nil
+})
+
+--- server send to client
+moon.raw_dispatch("S2C",function(msg)
+ ---@cast msg message_ptr
+ local uid = seri.unpack(moon.decode(msg, "H"))
+ local c = context.uid_map[uid]
+ if not c then
+ return
+ end
+ socket.write_message(c.fd,msg)
+end)
+
+-- server broadcast to client
+moon.raw_dispatch("SBC",function(msg)
+ ---@cast msg message_ptr
+ for _, c in pairs(context.uid_map) do
+ socket.write_message(c.fd, msg)
+ end
+end)
+
+
+
diff --git a/example/game/service_sence.lua b/example/game/service_sence.lua
new file mode 100644
index 000000000..b84a253ee
--- /dev/null
+++ b/example/game/service_sence.lua
@@ -0,0 +1 @@
+local moon = require("moon")
\ No newline at end of file
diff --git a/example/helloworld.lua b/example/helloworld.lua
deleted file mode 100644
index a9d3d7eb1..000000000
--- a/example/helloworld.lua
+++ /dev/null
@@ -1,31 +0,0 @@
-local moon = require("moon")
-
-local socket = require("moon.socket")
-
-local HOST = "127.0.0.1"
-local PORT = 12345
-
--------------------2 bytes len (big endian) protocol------------------------
-socket.on("accept",function(fd, msg)
- print("accept ", fd, moon.decode(msg, "Z"))
- socket.settimeout(fd, 10)
-end)
-
-socket.on("message",function(fd, msg)
- --echo message to client
- socket.write(fd, moon.decode(msg, "Z"))
-end)
-
-socket.on("close",function(fd, msg)
- print("close ", fd, moon.decode(msg, "Z"))
-end)
-
-local listenfd = socket.listen(HOST, PORT, moon.PTYPE_SOCKET_MOON)
-socket.start(listenfd)--start accept
-print("server start ", HOST, PORT)
-print("enter 'CTRL-C' stop server.")
-
-moon.shutdown(function()
- socket.close(listenfd)
- moon.quit()
-end)
\ No newline at end of file
diff --git a/example/main.lua b/example/main.lua
deleted file mode 100644
index ad49e8a58..000000000
--- a/example/main.lua
+++ /dev/null
@@ -1,244 +0,0 @@
----__init__
-if _G["__init__"] then
- local arg = ...
- return {
- thread = 16,
- enable_stdout = true,
- logfile = string.format("log/moon-%s-%s.log", arg[1], os.date("%Y-%m-%d-%H-%M-%S")),
- loglevel = "DEBUG",
- }
-end
-
--- define lua module search dir
-local path = table.concat({
- "../lualib/?.lua",
- "../service/?.lua",
- "start_by_config/?.lua;"
-},";")
-
-package.path = path.. ";"
-
-local moon = require("moon")
-
-moon.env("PATH", string.format("package.path='%s'", package.path))
-
-local arg = moon.args()
-
-local sid = math.tointeger(arg[1])
-
-local services
-
-local switch = {}
-
-switch[1] = function ()
- services = {
- {
- unique = true,
- name = "send_benchmark_receiver1",
- file = "start_by_config/send_benchmark_receiver.lua",
- }, {
- unique = true,
- name = "send_benchmark_receiver2",
- file = "start_by_config/send_benchmark_receiver.lua",
- }
- ,
- {
- unique = true,
- name = "send_benchmark_receiver3",
- file = "start_by_config/send_benchmark_receiver.lua",
- }
- ,
- {
- unique = true,
- name = "send_benchmark_receiver4",
- file = "start_by_config/send_benchmark_receiver.lua",
- },
- {
- unique = true,
- name = "send_benchmark_sender",
- file = "start_by_config/send_benchmark_sender.lua",
- }
- }
-end
-
-switch[2] = function ()
- services = {
- {
- unique = true,
- name= "master",
- file = "start_by_config/network_text_benchmark.lua",
- host = "0.0.0.0",
- port = 42345,
- master = true,
- count = 4
- }
- }
-end
-
-switch[3] = function ()
-
- services = {
- {
- unique = true,
- name= "server",
- file = "start_by_config/network_benchmark.lua",
- host = "127.0.0.1",
- port = 42346,
- master = true,
- count = 4
- },
- {
- unique = true,
- name= "client",
- file = "start_by_config/network_benchmark_client.lua",
- host = "127.0.0.1",
- port = 42346,
- client_num = 1000,
- count = 100
- }
- }
-end
-
-switch[4] = function ()
- services = {
- {
- unique = true,
- name = "mysql",
- file = "../service/sqldriver.lua",
- provider = "moon.db.mysql",
- db_conf = {
- host = "127.0.0.1",
- port = 3306,
- database = "mysql",
- user="root",
- password="123456",
- timeout= 1000,
- max_packet_size=102400,
- connection_num=4
- }
- },
- {
- unique = true,
- name = "call_mysql_service",
- file = "start_by_config/call_mysql_service.lua"
- }
- }
-end
-
-switch[5] = function ()
- services = {
- {
- unique = true,
- name = "redis",
- file = "../service/redisd.lua",
- host = "127.0.0.1",
- port = 6379,
- timeout = 1000,
- poolsize = 4
- },
- {
- unique = true,
- name = "call_redis_service",
- file = "start_by_config/call_redis_service.lua"
- }
- }
-end
-
-switch[6] = function ()
- services = {
- {
- unique = true,
- name = "sharetable_example",
- file = "start_by_config/sharetable_example.lua"
- }
- }
-end
-
-switch[7] = function ()
- services = {
- {
- unique = true,
- name = "sharetable_example",
- file = "start_by_config/sharetable_example_dir.lua"
- }
- }
-end
-
-switch[8] = function ()
- services = {
- {
- unique = true,
- name = "cluster_etc",
- file = "start_by_config/cluster_etc.lua",
- host = "127.0.0.1",
- port = 40001,
- config = "config.json"
- },
- {
- unique = true,
- name = "cluster",
- file = "../service/cluster.lua",
- host = "127.0.0.1",
- port = 42345,
- etc_host = "127.0.0.1:40001",
- etc_path = "/cluster"
- },
- {
- unique = true,
- name = "cluster_receiver",
- file = "start_by_config/cluster_receiver.lua"
- }
- }
-end
-
-switch[9] = function ()
- services = {
- {
- unique = true,
- name = "cluster",
- file = "../service/cluster.lua",
- host = "127.0.0.1",
- port = 42346,
- etc_host = "127.0.0.1:40001",
- etc_path = "/cluster"
- },
- {
- unique = true,
- name = "cluster_sender",
- file = "start_by_config/cluster_sender.lua"
- }
- }
-end
-
-local fn = switch[sid]
-if not fn then
- moon.error("not implemented")
- moon.exit(-1)
- return 0
-end
-
-moon.env("NODE", tostring(sid))
-
-fn()
-
-local addrs = {}
-moon.async(function()
- for _, conf in ipairs(services) do
- local service_type = conf.service_type or "lua"
- local addr = moon.new_service(service_type, conf)
- if 0 == addr then
- moon.exit(-1)
- return
- end
- table.insert(addrs, addr)
- end
-end)
-
-moon.shutdown(function()
- moon.async(function()
- for _, addr in ipairs(addrs) do
- moon.kill(addr)
- end
- moon.quit()
- end)
-end)
diff --git a/example/main_game.lua b/example/main_game.lua
new file mode 100644
index 000000000..f03151912
--- /dev/null
+++ b/example/main_game.lua
@@ -0,0 +1,140 @@
+local socket = require "moon.socket"
+---__init__
+if _G["__init__"] then
+ local arg = ...
+ return {
+ thread = 16,
+ enable_stdout = true,
+ logfile = string.format("log/moon-%s-%s.log", arg[1], os.date("%Y-%m-%d-%H-%M-%S")),
+ loglevel = "DEBUG",
+ }
+end
+
+-- custom lua module search dir
+local path = table.concat({
+ "../lualib/?.lua",
+ "../service/?.lua",
+},";")
+
+package.path = path.. ";"
+
+local moon = require("moon")
+
+moon.env("PATH", string.format("package.path='%s'", package.path))
+
+local arg = moon.args()
+
+local sid = math.tointeger(arg[1])
+
+local params = {
+ gate = {host = "127.0.0.1", port = 12345},
+ db = {
+ redis = { host = "127.0.0.1", port = 6379, db = 0, timeout = 1000},
+ pg = { user = "postgres", password = "123456", host = "127.0.0.1", port = 5432, connect_timeout = 1000, database = "postgres" }
+ }
+}
+
+local services = {
+ -- {
+ -- unique = true,
+ -- name = "mysql",
+ -- file = "../service/sqldriver.lua",
+ -- provider = "moon.db.mysql",
+ -- opts = params.mysql,
+ -- poolsize = 5,
+ -- threadid = 1
+ -- },
+ -- {
+ -- unique = true,
+ -- name = "game_db",
+ -- file = "../service/sqldriver.lua",
+ -- provider = "moon.db.pg",
+ -- opts = params.db.pg,
+ -- poolsize = 5,
+ -- threadid = 2
+ -- },
+ -- {
+ -- unique = true,
+ -- name = "game_redis",
+ -- file = "../service/redisd.lua",
+ -- opts = params.db.redis,
+ -- poolsize = 5,
+ -- threadid = 3
+ -- },
+ {
+ unique = true,
+ name = "sharetable",
+ file = "../service/sharetable.lua",
+ dir = "table",
+ threadid = 4
+ },
+ {
+ unique = true,
+ name = "gate",
+ file = "game/service_gate.lua",
+ threadid = 5,
+ host = params.gate.host,
+ port = params.gate.port
+ },
+}
+
+for i=1,10 do
+ table.insert(services, {
+ unique = true,
+ name = "sence"..i,
+ file = "game/service_sence.lua",
+ })
+end
+
+local addrs = {}
+moon.async(function()
+ local fd = socket.connect(params.db.pg.host, params.db.pg.port, moon.PTYPE_SOCKET_TCP, 1000)
+ if fd then
+ socket.close(fd)
+ table.insert(services,{
+ unique = true,
+ name = "game_db",
+ file = "../service/sqldriver.lua",
+ provider = "moon.db.pg",
+ opts = params.db.pg,
+ poolsize = 5,
+ threadid = 2
+ })
+ end
+
+ fd = socket.connect(params.db.redis.host, params.db.redis.port, moon.PTYPE_SOCKET_TCP, 1000)
+ if fd then
+ socket.close(fd)
+ table.insert(services,{
+ unique = true,
+ name = "game_redis",
+ file = "../service/redisd.lua",
+ opts = params.db.redis,
+ poolsize = 5,
+ threadid = 3
+ })
+ end
+
+ for _, conf in ipairs(services) do
+ local service_type = conf.service_type or "lua"
+ local addr = moon.new_service(service_type, conf)
+ if 0 == addr then
+ moon.exit(-1)
+ return
+ end
+ table.insert(addrs, addr)
+ end
+
+ moon.sleep(5000)
+
+ moon.exit(0)
+end)
+
+moon.shutdown(function()
+ moon.async(function()
+ for _, addr in ipairs(addrs) do
+ moon.kill(addr)
+ end
+ moon.quit()
+ end)
+end)
diff --git a/example/network_websocket.lua b/example/network_websocket.lua
index 237d3459c..182183bc8 100644
--- a/example/network_websocket.lua
+++ b/example/network_websocket.lua
@@ -3,7 +3,7 @@ local moon = require("moon")
local socket = require("moon.socket")
-local conf = ... or {}
+local conf = ...
local HOST = conf.host or "127.0.0.1"
local PORT = conf.port or 12346
diff --git a/example/send_benchmark.lua b/example/send_benchmark.lua
new file mode 100644
index 000000000..e5543bdc4
--- /dev/null
+++ b/example/send_benchmark.lua
@@ -0,0 +1,96 @@
+local moon = require("moon")
+
+local conf = ...
+
+if conf.recever then
+ local command = {}
+
+ command.TEST = function(sender, ...)
+ moon.send('lua', sender, 'TEST', ...)
+ end
+
+ moon.dispatch('lua',function(sender, session, cmd, ...)
+ -- body
+ local f = command[cmd]
+ if f then
+ f(sender,...)
+ else
+ error(string.format("Unknown command %s", tostring(cmd)))
+ end
+ end)
+
+ moon.shutdown(function ()
+ moon.quit()
+ end)
+
+ return true
+end
+
+
+local sttime = 0
+local counter = 0
+
+local nreceiver = 5
+local ncount = 20000
+
+local command = {}
+
+command.TEST = function()
+ counter = counter + 1
+ if counter == ncount*nreceiver then
+ local cost = moon.clock() - sttime
+ print(string.format("cost %.03fs, %s op/s", cost, math.floor(ncount*nreceiver/cost)))
+ counter = 0
+ end
+end
+
+moon.dispatch('lua',function(sender, session, cmd, ...)
+ local f = command[cmd]
+ if f then
+ f(...)
+ else
+ error(string.format("Unknown command %s", tostring(cmd)))
+ end
+end)
+
+
+
+moon.async(function()
+
+ local receivers = {}
+
+ for i=1, nreceiver do
+ local id = moon.new_service("lua", {
+ unique = true,
+ name = "receiver"..i,
+ file = "send_benchmark.lua",
+ recever = true
+ })
+
+ table.insert(receivers, id)
+ end
+
+ local i = 0
+ while i < 10 do
+ sttime = moon.clock()
+
+ for _=1,ncount do
+ for _, id in ipairs(receivers) do
+ moon.send('lua', id, "TEST", "123456789")
+ end
+ end
+
+ moon.sleep(1000)
+ i= i+1
+ end
+
+ for _, id in ipairs(receivers) do
+ moon.kill(id)
+ end
+ moon.quit()
+end)
+
+
+
+
+
diff --git a/example/sharetable_data.lua b/example/sharetable_data.lua
deleted file mode 100644
index a27096306..000000000
--- a/example/sharetable_data.lua
+++ /dev/null
@@ -1,9 +0,0 @@
- local M = {
- a = 2,
- b = "world",
- c = {
- 7,8,9,10,11
- }
- }
- return M
-
\ No newline at end of file
diff --git a/example/start_by_config/call_mysql_service.lua b/example/start_by_config/call_mysql_service.lua
deleted file mode 100644
index a686bb890..000000000
--- a/example/start_by_config/call_mysql_service.lua
+++ /dev/null
@@ -1,69 +0,0 @@
-local moon = require("moon")
-local mysql = require("sqldriver")
-
-local db = moon.queryservice("mysql")
-
-local create_table = [[
- DROP TABLE IF EXISTS `article_detail`;
- CREATE TABLE `article_detail` (
- `id` BIGINT NOT NULL,
- `parentid` BIGINT DEFAULT '0',
- `title` varchar(255) DEFAULT '',
- `content` varchar(255) DEFAULT '',
- `updatetime` varchar(255) DEFAULT '',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-]]
-
-mysql.execute(db, create_table)
-
-mysql.execute(db, "INSERT INTO article_detail(id,parentid,title,content,updatetime) VALUES(1,2,'abc','abc','abc')")
-
-local count = 0
-moon.async(function()
- while true do
- local res = mysql.query(db, "select * from article_detail;")
- if res then
- print_r(res)
- end
- count = count + 1
- end
-end)
-
-moon.async(function()
- while true do
- local res = mysql.query(db, "select * from article_detail;")
- if res.err then
- print_r(res)
- end
- count = count + 1
- end
-end)
-
-moon.async(function()
- while true do
- local res = mysql.query(db, "select * from article_detail;")
- if res.err then
- print_r(res)
- end
- count = count + 1
- end
-end)
-
-moon.async(function()
- while true do
- local res = mysql.query(db, "select * from article_detail;")
- if res.err then
- print_r(res)
- end
- count = count + 1
- end
-end)
-
-moon.async(function()
- while true do
- moon.sleep(1000)
- print(count)
- count = 0
- end
-end)
diff --git a/example/start_by_config/call_redis_service.lua b/example/start_by_config/call_redis_service.lua
deleted file mode 100644
index 5cd41d175..000000000
--- a/example/start_by_config/call_redis_service.lua
+++ /dev/null
@@ -1,63 +0,0 @@
-local moon = require("moon")
----@type redis_client
-local redis = require("redisd")
-
-local count = 0
-local db = moon.queryservice("redis")
-
-redis.send(db,"del","C")
-redis.send(db,"set", "A", "hello")
-redis.send(db,"set", "B", "world")
-redis.send(db,"sadd", "C", "one")
-
-moon.async(function()
- print(redis.call(db, "get", "A"))
- print(redis.call(db, "get", "B"))
- print(redis.call(db, "sadd", "C", "two"))
-end)
-
-moon.async(function()
- local index = 1
- while true do
- -- call(db, "get", "dog")
- local res,err = redis.call(db, "set", "dog"..tostring(index), "an animaldadadaddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd")
- if not res then
- print("redis set error", res, err)
- moon.sleep(1000)
- else
- count=count+1
- index = index+1
- end
- end
-end)
-
-moon.async(function()
- local json = require("json")
-
- local args = {}
- for i=1,1000,2 do
- args[i] = i
- args[i+1] = i
- end
-
- local res,err = redis.call(db, "hmset", "test", table.unpack(args))
- if not res then
- print("redis set error", res, err)
- moon.sleep(1000)
- else
- count=count+1
- end
-
- local t,err = redis.call(db, "hgetall", "test")
- for i=1,#t,2 do
- assert( math.tointeger(t[i]) == math.tointeger(t[i+1]))
- end
-end)
-
-moon.async(function()
- while true do
- moon.sleep(1000)
- print(count)
- count = 0
- end
-end)
diff --git a/example/start_by_config/cluster_etc.lua b/example/start_by_config/cluster_etc.lua
deleted file mode 100644
index 96a91ec2d..000000000
--- a/example/start_by_config/cluster_etc.lua
+++ /dev/null
@@ -1,54 +0,0 @@
-local moon = require("moon")
-local json = require("json")
-local httpserver = require("moon.http.server")
-
-local conf = ...
-
-httpserver.content_max_len = 8192
-httpserver.header_max_len = 8192
-
-httpserver.error = function(fd, err)
- moon.warn(fd," disconnected:", err)
-end
-
-local cluster_etc
-
-local function load_cluster_etc()
- cluster_etc = {}
- local res = json.decode(io.readfile(conf.config))
- for _,v in ipairs(res) do
- cluster_etc[v.node] = v
- end
-end
-
-load_cluster_etc()
-
-httpserver.on("/reload",function(request, response)
- load_cluster_etc()
- response.status_code = 200
- response:write_header("Content-Type","text/plain")
- response:write("OK")
-end)
-
-httpserver.on("/cluster",function(request, response)
- local query = request.parse_query()
- local node = tonumber(query.node)
- local cfg = cluster_etc[node]
- if not cfg or not cfg.host or not cfg.port then
- response.status_code = 404
- response:write_header("Content-Type","text/plain")
- response:write("cluster node not found "..tostring(query.node))
- return
- end
- response.status_code = 200
- response:write_header("Content-Type","application/json")
- response:write(json.encode({host = cfg.host, port = cfg.port}))
-end)
-
-httpserver.listen(conf.host, conf.port, conf.timeout)
-print("Cluster etc http server start", conf.host, conf.port)
-
-moon.shutdown(function()
- moon.quit()
-end)
-
diff --git a/example/start_by_config/cluster_receiver.lua b/example/start_by_config/cluster_receiver.lua
deleted file mode 100644
index 04f37e4e0..000000000
--- a/example/start_by_config/cluster_receiver.lua
+++ /dev/null
@@ -1,68 +0,0 @@
-local moon = require("moon")
-
-local command = {}
-
-command.ADD = function(a,b)
- return a+b
-end
-
-command.SUB = function(a,b)
- return a-b
-end
-
-command.MUL = function(a,b)
- return a*b
-end
-
-command.ACCUM = function(...)
- local numbers = {...}
- local total = 0
- for _,v in pairs(numbers) do
- total = total + v
- end
- return total
-end
-
-local count = 0
-local tcount = 0
-local bt = 0
-command.COUNTER = function(t)
- -- print(...)
- count = count + 1
- if bt == 0 then
- bt = t
- end
- tcount = tcount + 1
-
- if count == 10000 then
- print("per", (t-bt))
- count = 0
- bt = 0
- end
-end
-
-moon.async(function()
- while true do
- moon.sleep(1000)
- print(tcount)
- end
-end)
-
-
-moon.dispatch('lua',function(sender, session, CMD, ...)
- local f = command[CMD]
- if f then
- if CMD ~= 'ADD' then
- --moon.sleep(20000)
- moon.response('lua',sender, session,f(...))
- end
- else
- error(string.format("Unknown command %s", tostring(CMD)))
- end
-end)
-
-moon.async(function()
- moon.sleep(10)
- print(moon.co_call("lua", moon.queryservice("cluster"), "Start"))
-end)
-
diff --git a/example/start_by_config/cluster_sender.lua b/example/start_by_config/cluster_sender.lua
deleted file mode 100644
index 8d804d0a5..000000000
--- a/example/start_by_config/cluster_sender.lua
+++ /dev/null
@@ -1,37 +0,0 @@
-local moon = require("moon")
-local cluster = require("cluster")
-
-local counter = 0
-
-moon.async(function()
- while true do
- moon.sleep(1000)
- print("per sec ",counter)
- counter=0
- end
-end)
-
-local args = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16}
-moon.async(function()
- print(moon.co_call("lua", moon.queryservice("cluster"), "Start"))
- print(cluster.call(9, 'cluster_receiver', "ACCUM", table.unpack(args)))
- for i=1,100000 do
- cluster.send(9, 'cluster_receiver',"COUNTER", moon.now())
- end
-
- while true do
- local ret ,err = cluster.call(9, 'cluster_receiver', "ACCUM", table.unpack(args))
- if not ret then
- print(err)
- return
- end
- counter=counter+1
- end
-end)
-
-
-
-
-
-
-
diff --git a/example/start_by_config/network_benchmark.lua b/example/start_by_config/network_benchmark.lua
deleted file mode 100644
index bf4db0348..000000000
--- a/example/start_by_config/network_benchmark.lua
+++ /dev/null
@@ -1,30 +0,0 @@
-local moon = require("moon")
-local socket = require("moon.socket")
-local seri = require("seri")
-local binunpack = seri.unpack
-local binpack = seri.pack
-
-local conf = ... or {}
-
-socket.on("accept",function(fd, msg)
- --print("accept ", fd, moon.decode(msg, "Z"))
-end)
-
-socket.on("message",function(fd, msg)
- socket.write(fd, moon.decode(msg, "Z"))
-end)
-
-socket.on("close",function(fd, msg)
- --print("close ", fd, moon.decode(msg, "Z"))
-end)
-
-
-
-local listenfd = socket.listen(conf.host,conf.port,moon.PTYPE_SOCKET_MOON)
-socket.start(listenfd)
-
-print(string.format([[
-
- network benchmark run at %s %d with %d slaves.
-]], conf.host, conf.port, conf.count))
-
diff --git a/example/start_by_config/send_benchmark_receiver.lua b/example/start_by_config/send_benchmark_receiver.lua
deleted file mode 100644
index 4e59393c2..000000000
--- a/example/start_by_config/send_benchmark_receiver.lua
+++ /dev/null
@@ -1,18 +0,0 @@
-local moon = require("moon")
-
-local command = {}
-
-command.TEST = function(sender, ...)
- moon.send('lua', sender, 'TEST', ...)
-end
-
-moon.dispatch('lua',function(sender, session, cmd, ...)
- -- body
- local f = command[cmd]
- if f then
- f(sender,...)
- else
- error(string.format("Unknown command %s", tostring(cmd)))
- end
-end)
-
diff --git a/example/start_by_config/send_benchmark_sender.lua b/example/start_by_config/send_benchmark_sender.lua
deleted file mode 100644
index 1cde3f368..000000000
--- a/example/start_by_config/send_benchmark_sender.lua
+++ /dev/null
@@ -1,54 +0,0 @@
-local moon = require("moon")
-
-local receiver1
-local receiver2
-local receiver3
-local receiver4
-
-local sttime = 0
-
-local counter = 0
-
-local ncount = 10000
-
-local command = {}
-
-command.TEST = function()
- counter = counter + 1
- if counter == ncount*4 then
- print("cost ",moon.now() - sttime)
- counter = 0
- end
-end
-
-moon.dispatch('lua',function(sender, session, cmd, ...)
- local f = command[cmd]
- if f then
- f(...)
- else
- error(string.format("Unknown command %s", tostring(cmd)))
- end
-end)
-
-receiver1 = moon.queryservice("send_benchmark_receiver1")
-receiver2 = moon.queryservice("send_benchmark_receiver2")
-receiver3 = moon.queryservice("send_benchmark_receiver3")
-receiver4 = moon.queryservice("send_benchmark_receiver4")
-
-moon.async(function()
- while true do
- moon.sleep(1000)
- sttime = moon.now()
- for _=1,ncount do
- moon.send('lua', receiver1, "TEST", "123456789")
- moon.send('lua', receiver2, "TEST", "123456789")
- moon.send('lua', receiver3, "TEST", "123456789")
- moon.send('lua', receiver4, "TEST", "123456789")
- end
- end
-end)
-
-
-
-
-
diff --git a/example/start_by_config/sharetable_example.lua b/example/start_by_config/sharetable_example.lua
deleted file mode 100644
index 4ea6a9c55..000000000
--- a/example/start_by_config/sharetable_example.lua
+++ /dev/null
@@ -1,84 +0,0 @@
-local moon = require("moon")
-local sharetable = require("sharetable")
-local conf = ... or {}
-
-local file = "sharetable_data.lua"
-
-if conf.agent then
- local data
- local command = {}
-
- command.LOAD = function()
- data = sharetable.query(file)
- print_r(data)
- end
-
- command.UPDATE = function()
- data = sharetable.query(file)
- print_r(data)
- end
-
- moon.dispatch('lua',function(sender, session, cmd, ...)
- local f = command[cmd]
- if f then
- moon.response("lua", sender, session, f(...))
- else
- moon.error(moon.name, "recv unknown cmd "..cmd)
- end
- end)
-else
- local content1 = [[
- local M = {
- a = 1,
- b = "hello",
- c = {
- 1,2,3,4,5
- }
- }
- return M
- ]]
-
- local content2 = [[
- local M = {
- a = 2,
- b = "world",
- c = {
- 7,8,9,10,11
- }
- }
- return M
- ]]
- local agent = 0
- moon.async(function()
- io.writefile(file, content1)
-
- moon.new_service("lua",{
- unique = true,
- name = "sharetable",
- file = "../service/sharetable.lua"
- })
-
- print(sharetable.loadfile(file))
-
- agent = moon.new_service(
- "lua",
- {
- name = "agent",
- file = "start_by_config/sharetable_example.lua",
- agent = true
- }
- )
-
- print(moon.co_call("lua", agent, "LOAD"))
- io.writefile(file, content2)
- print(sharetable.loadfile(file))
-
- print(moon.co_call("lua", agent, "UPDATE"))
-
- moon.kill(agent)
- moon.exit(-1)
- -- moon.kill(moon.queryservice("sharetable"))
- end)
-
-end
-
diff --git a/example/table/sharedata.lua b/example/table/sharedata.lua
deleted file mode 100644
index a27096306..000000000
--- a/example/table/sharedata.lua
+++ /dev/null
@@ -1,9 +0,0 @@
- local M = {
- a = 2,
- b = "world",
- c = {
- 7,8,9,10,11
- }
- }
- return M
-
\ No newline at end of file
diff --git a/example/start_by_config/network_benchmark_client.lua b/example/tcp_benchmark.lua
similarity index 62%
rename from example/start_by_config/network_benchmark_client.lua
rename to example/tcp_benchmark.lua
index 62ee42a78..a8e5382df 100644
--- a/example/start_by_config/network_benchmark_client.lua
+++ b/example/tcp_benchmark.lua
@@ -1,7 +1,38 @@
local moon = require("moon")
local socket = require("moon.socket")
-
-local conf = ... or {}
+local seri = require("seri")
+local binunpack = seri.unpack
+local binpack = seri.pack
+
+local conf = ...
+
+conf.host = "127.0.0.1"
+conf.port = 33888
+conf.count = 1000
+conf.client_num = 1000
+
+if conf.name == "server" then
+ socket.on("accept",function(fd, msg)
+ --print("accept ", fd, moon.decode(msg, "Z"))
+ end)
+
+ socket.on("message",function(fd, msg)
+ socket.write(fd, moon.decode(msg, "Z"))
+ end)
+
+ socket.on("close",function(fd, msg)
+ --print("close ", fd, moon.decode(msg, "Z"))
+ end)
+
+ local listenfd = socket.listen(conf.host, conf.port,moon.PTYPE_SOCKET_MOON)
+ socket.start(listenfd)
+
+ print(string.format([[
+ network benchmark run at %s %d with %d clients, per client send %s message.
+ ]], conf.host, conf.port, conf.client_num, conf.count))
+
+ return
+end
local total,count,client_num,send_count
@@ -32,7 +63,7 @@ socket.on("connect",function(fd,msg)
socket.write(k,send_data)
end
start_time = millseconds()
- print("start....")
+ print("running ....")
end
end)
@@ -72,6 +103,10 @@ socket.on("message",function(fd, msg)
end
print(string.format("%.02f requests per second",qps))
+
+ moon.kill(moon.queryservice("server"))
+
+ moon.exit(0)
end
end)
@@ -81,14 +116,17 @@ end)
total = conf.client_num * conf.count
-print(total)
client_num = conf.client_num
send_count = conf.count
moon.async(function()
- moon.sleep(10)
+ moon.new_service("lua", {
+ name = "server",
+ file = "tcp_benchmark.lua",
+ })
+
for _=1,conf.client_num do
- local fd = socket.connect(conf.host,conf.port,moon.PTYPE_SOCKET_MOON)
+ socket.connect(conf.host,conf.port,moon.PTYPE_SOCKET_MOON)
end
end)
@@ -96,3 +134,7 @@ end)
+
+
+
+
diff --git a/example/helloworld_client.lua b/example/tcp_client.lua
similarity index 100%
rename from example/helloworld_client.lua
rename to example/tcp_client.lua
diff --git a/example/start_by_config/network_text_benchmark.lua b/example/tcp_coroutine_benchmark.lua
similarity index 98%
rename from example/start_by_config/network_text_benchmark.lua
rename to example/tcp_coroutine_benchmark.lua
index 0cebba2fc..cdba51c2b 100644
--- a/example/start_by_config/network_text_benchmark.lua
+++ b/example/tcp_coroutine_benchmark.lua
@@ -1,6 +1,6 @@
local moon = require("moon")
local socket = require("moon.socket")
-local conf = ... or {}
+local conf = ...
local function run_slave()
local command = {}
diff --git a/example/network.lua b/example/tcp_server.lua
similarity index 98%
rename from example/network.lua
rename to example/tcp_server.lua
index d0f8091d6..a19c1c233 100644
--- a/example/network.lua
+++ b/example/tcp_server.lua
@@ -2,7 +2,7 @@ local moon = require("moon")
local socket = require("moon.socket")
-local conf = ... or {}
+local conf = ...
local HOST = conf.host or "127.0.0.1"
local PORT = conf.port or 12345
diff --git a/service/redisd.lua b/service/redisd.lua
index 6a5dcef2e..51a455e26 100644
--- a/service/redisd.lua
+++ b/service/redisd.lua
@@ -9,10 +9,10 @@ local tbinsert = table.insert
local conf = ...
if conf.name then
- local function connect(db_conf, auto_reconnect)
+ local function connect(opts, auto_reconnect)
local db, err
repeat
- db, err = redis.connect(db_conf)
+ db, err = redis.connect(opts)
if not db then
moon.error(err)
break
@@ -39,7 +39,7 @@ if conf.name then
repeat
local err,res
if not db then
- db, err = connect(conf, auto_reconnect)
+ db, err = connect(conf.opts, auto_reconnect)
if not db then
if sessionid == 0 then
moon.error(err)
@@ -139,7 +139,7 @@ if conf.name then
end)
end
- local fd = socket.sync_connect(conf.host,conf.port,moon.PTYPE_SOCKET_TCP)
+ local fd = socket.sync_connect(conf.opts.host,conf.opts.port,moon.PTYPE_SOCKET_TCP)
assert(fd, "connect db redis failed")
socket.close(fd)
diff --git a/service/sqldriver.lua b/service/sqldriver.lua
index 2ed1a59ff..8ea7e95db 100644
--- a/service/sqldriver.lua
+++ b/service/sqldriver.lua
@@ -35,7 +35,7 @@ if conf.name then
return db
end
else
- db = provider.connect(conf.db_conf)
+ db = provider.connect(conf.opts)
if rawget(db, "code") then
if sessionid == 0 then
---if execute operation print error, then reconnect
@@ -48,7 +48,7 @@ if conf.name then
db = nil
---sleep then reconnect
moon.sleep(1000)
- moon.error("db reconnecting...", table.tostring(conf.db_conf))
+ moon.error("db reconnecting...", table.tostring(conf.opts))
end
end
end
@@ -107,8 +107,8 @@ if conf.name then
end)
end
- local fd = socket.sync_connect(conf.db_conf.host, conf.db_conf.port, moon.PTYPE_SOCKET_TCP)
- assert(fd, string.format("connect failed provider: %s host: %s port: %s", conf.provider, conf.db_conf.host, conf.db_conf.port))
+ local fd = socket.sync_connect(conf.opts.host, conf.opts.port, moon.PTYPE_SOCKET_TCP)
+ assert(fd, string.format("connect failed provider: %s host: %s port: %s", conf.provider, conf.opts.host, conf.opts.port))
socket.close(fd)
local command = {}
diff --git a/example/example_aoi.lua b/test/aoi.lua
similarity index 93%
rename from example/example_aoi.lua
rename to test/aoi.lua
index 1dc007704..0f1828008 100644
--- a/example/example_aoi.lua
+++ b/test/aoi.lua
@@ -44,9 +44,8 @@ local function test(space)
end
local function run()
- local space = aoi.create(-256,-256, 512, 8)
+ local space = aoi.new(-256,-256, 512, 8)
test(space)
- aoi.release(space)
end
run()
diff --git a/example/example_hotfix.lua b/test/hotfix.lua
similarity index 87%
rename from example/example_hotfix.lua
rename to test/hotfix.lua
index 7fd2cb07d..40302a36c 100644
--- a/example/example_hotfix.lua
+++ b/test/hotfix.lua
@@ -1,5 +1,5 @@
local moon = require("moon")
-local conf = ...
+local test_assert = require("test_assert")
local reload = require "hardreload"
local require = reload.require
-- reload.postfix = "_update" -- for test
@@ -38,6 +38,7 @@ source["old"] = [[
tmp(self)
print("before", self.n, self.m, a-b)
moon.sleep(1000)
+ return a - b
end
return M
@@ -73,6 +74,7 @@ source["new"] = [[
tmp(self)
print("after", self.n, self.m, a + b)
moon.sleep(1000)
+ return a + b
end
return M
@@ -90,9 +92,10 @@ moon.async(function ()
for k,v in pairs(reload_module) do
print(k,v)
end
- rmd:func()--- output: before 1000 hello -100
+ assert(rmd:func() == -100) --- output: before 1000 hello -100
print("Hot Fix Result",reload.reload_simple("old", "new"))
- rmd:func()--- outpur: after 1 hello 300
+ assert(rmd:func() == 300) --- outpur: after 1 hello 300
+ test_assert.success()
end)
diff --git a/test/main_test.lua b/test/main_test.lua
index 7fa798d6d..5140c0fa2 100644
--- a/test/main_test.lua
+++ b/test/main_test.lua
@@ -24,11 +24,11 @@ local test_case =
name = "call",
file = "call.lua"
}
- -- ,
- -- {
- -- name = "redis",
- -- file = "redis.lua"
- -- }
+ ,
+ {
+ name = "redis",
+ file = "redis.lua"
+ }
,
{
name = "large_package",
@@ -51,6 +51,14 @@ local test_case =
{
name = "json",
file = "json.lua"
+ },
+ {
+ name = "hotfix",
+ file = "hotfix.lua"
+ },
+ {
+ name = "aoi",
+ file = "aoi.lua"
}
}
diff --git a/test/redis.lua b/test/redis.lua
index 807b6a3b6..4be83a871 100644
--- a/test/redis.lua
+++ b/test/redis.lua
@@ -5,7 +5,11 @@ local test_assert = require("test_assert")
local function run_test()
moon.async(function()
local db,err = redis.connect({host="127.0.0.1",port=6379})
- test_assert.assert(db, err)
+ if not db then
+ moon.warn("connect redis failed", err)
+ test_assert.success()
+ return
+ end
local res, err = db:set("set_key", "Hello World")
test_assert.equal(res, "OK")
diff --git a/test/twitter-out.json b/test/twitter-out.json
index c32136a7b..65190b680 100644
--- a/test/twitter-out.json
+++ b/test/twitter-out.json
@@ -1,15482 +1,15482 @@
{
- "search_metadata": {
- "query": "%E4%B8%80",
- "count": 100,
- "completed_in": 0.087,
- "since_id_str": "0",
- "max_id_str": "505874924095815681",
- "max_id": 505874924095815700,
- "since_id": 0,
- "refresh_url": "?since_id=505874924095815681&q=%E4%B8%80&include_entities=1",
- "next_results": "?max_id=505874847260352512&q=%E4%B8%80&count=100&include_entities=1"
- },
"statuses": [
{
- "id": 505874924095815681,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "aym0566x",
+ "id": 866260188,
+ "id_str": "866260188",
+ "indices": [
+ 0,
+ 9
+ ],
+ "name": "前田あゆみ"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": 866260188,
+ "place": null,
+ "in_reply_to_user_id_str": "866260188",
+ "text": "@aym0566x \n\n名前:前田あゆみ\n第一印象:なんか怖っ!\n今の印象:とりあえずキモい。噛み合わない\n好きなところ:ぶすでキモいとこ😋✨✨\n思い出:んーーー、ありすぎ😊❤️\nLINE交換できる?:あぁ……ごめん✋\nトプ画をみて:照れますがな😘✨\n一言:お前は一生もんのダチ💖",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:15 +0000 2014",
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1186275104,
- "followers_count": 262,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "元野球部マネージャー❤︎…最高の夏をありがとう…❤︎",
- "id_str": "1186275104",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/497760886795153410/LDjAwR_y_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/497760886795153410/LDjAwR_y_normal.jpeg",
"name": "AYUMI",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 252,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sat Feb 16 13:40:25 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/497760886795153410/LDjAwR_y_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/1186275104/1409318784",
- "protected": false,
- "statuses_count": 1769,
- "friends_count": 252,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "en",
+ "id_str": "1186275104",
+ "listed_count": 0,
+ "location": "",
"screen_name": "ayuu0123",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "元野球部マネージャー❤︎…最高の夏をありがとう…❤︎",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/497760886795153410/LDjAwR_y_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 1769,
+ "followers_count": 262,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "en",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1186275104/1409318784",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 1186275104,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 235,
- "verified": false
- },
- "in_reply_to_user_id_str": "866260188",
- "in_reply_to_screen_name": "aym0566x",
- "favorite_count": 0,
- "id_str": "505874924095815681",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "@aym0566x \n\n名前:前田あゆみ\n第一印象:なんか怖っ!\n今の印象:とりあえずキモい。噛み合わない\n好きなところ:ぶすでキモいとこ😋✨✨\n思い出:んーーー、ありすぎ😊❤️\nLINE交換できる?:あぁ……ごめん✋\nトプ画をみて:照れますがな😘✨\n一言:お前は一生もんのダチ💖",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 0,
- 9
- ],
- "id": 866260188,
- "id_str": "866260188",
- "screen_name": "aym0566x",
- "name": "前田あゆみ"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 0,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:15 +0000 2014",
- "in_reply_to_user_id": 866260188,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874924095815681,
+ "retweeted": false,
+ "id_str": "505874924095815681",
+ "geo": null,
+ "in_reply_to_screen_name": "aym0566x"
},
{
"retweeted_status": {
- "id": 505864943636197376,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "media": [
+ {
+ "display_url": "pic.twitter.com/PkCJAcSuYK",
+ "media_url_https": "https://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg",
+ "expanded_url": "http://twitter.com/KATANA77/status/505864943636197376/photo/1",
+ "sizes": {
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ },
+ "large": {
+ "h": 432,
+ "w": 765,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 338,
+ "w": 600,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 192,
+ "w": 340,
+ "resize": "fit"
+ }
+ },
+ "media_url": "http://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg",
+ "indices": [
+ 13,
+ 35
+ ],
+ "id": 505864942575034369,
+ "id_str": "505864942575034369",
+ "type": "photo",
+ "url": "http://t.co/PkCJAcSuYK"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "えっそれは・・・(一同) http://t.co/PkCJAcSuYK",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
+ "created_at": "Sat Aug 30 23:49:35 +0000 2014",
+ "source": "Twitter Web Client",
+ "lang": "ja",
+ "favorite_count": 42,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 77915997,
- "followers_count": 1095,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "プリキュア好きのサラリーマンです。好きなプリキュアシリーズはハートキャッチ、最愛のキャラクターは月影ゆりさんです。 http://t.co/QMLJeFmfMTご質問、お問い合わせはこちら http://t.co/LU8T7vmU3h",
- "id_str": "77915997",
- "default_profile_image": false,
- "location": "",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/480210114964504577/MjVIEMS4_normal.jpeg",
- "listed_count": 50,
"entities": {
"description": {
"urls": [
{
+ "display_url": "pixiv.net/member.php?id=…",
+ "url": "http://t.co/QMLJeFmfMT",
+ "expanded_url": "http://www.pixiv.net/member.php?id=4776",
"indices": [
58,
80
- ],
- "display_url": "pixiv.net/member.php?id=…",
- "url": "http://t.co/QMLJeFmfMT",
- "expanded_url": "http://www.pixiv.net/member.php?id=4776"
+ ]
},
{
+ "display_url": "ask.fm/KATANA77",
+ "url": "http://t.co/LU8T7vmU3h",
+ "expanded_url": "http://ask.fm/KATANA77",
"indices": [
95,
117
- ],
- "display_url": "ask.fm/KATANA77",
- "url": "http://t.co/LU8T7vmU3h",
- "expanded_url": "http://ask.fm/KATANA77"
+ ]
}
]
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/480210114964504577/MjVIEMS4_normal.jpeg",
"name": "(有)刀",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/808597451/45b82f887085d32bd4b87dfc348fe22a.png",
+ "friends_count": 740,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Mon Sep 28 03:41:27 +0000 2009",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/480210114964504577/MjVIEMS4_normal.jpeg",
"geo_enabled": true,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/77915997/1404661392",
- "protected": false,
- "statuses_count": 19059,
- "friends_count": 740,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "FFFFFF",
- "lang": "ja",
+ "id_str": "77915997",
+ "listed_count": 50,
+ "location": "",
"screen_name": "KATANA77",
- "default_profile": false,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "プリキュア好きのサラリーマンです。好きなプリキュアシリーズはハートキャッチ、最愛のキャラクターは月影ゆりさんです。 http://t.co/QMLJeFmfMTご質問、お問い合わせはこちら http://t.co/LU8T7vmU3h",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/808597451/45b82f887085d32bd4b87dfc348fe22a.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/480210114964504577/MjVIEMS4_normal.jpeg",
+ "utc_offset": 32400,
"profile_background_tile": true,
+ "statuses_count": 19059,
+ "followers_count": 1095,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "FFFFFF",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/77915997/1404661392",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/808597451/45b82f887085d32bd4b87dfc348fe22a.png",
- "follow_request_sent": false,
+ "id": 77915997,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 3741,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 42,
+ "in_reply_to_status_id": null,
+ "retweet_count": 82,
+ "in_reply_to_status_id_str": null,
+ "id": 505864943636197376,
+ "retweeted": false,
"id_str": "505864943636197376",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "えっそれは・・・(一同) http://t.co/PkCJAcSuYK",
- "lang": "ja",
- "source": "Twitter Web Client",
- "truncated": false,
- "entities": {
- "urls": [],
- "media": [
- {
- "indices": [
- 13,
- 35
- ],
- "id": 505864942575034369,
- "media_url": "http://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg",
- "sizes": {
- "small": {
- "w": 340,
- "resize": "fit",
- "h": 192
- },
- "thumb": {
- "w": 150,
- "resize": "crop",
- "h": 150
- },
- "large": {
- "w": 765,
- "resize": "fit",
- "h": 432
- },
- "medium": {
- "w": 600,
- "resize": "fit",
- "h": 338
- }
- },
- "id_str": "505864942575034369",
- "expanded_url": "http://twitter.com/KATANA77/status/505864943636197376/photo/1",
- "type": "photo",
- "display_url": "pic.twitter.com/PkCJAcSuYK",
- "url": "http://t.co/PkCJAcSuYK",
- "media_url_https": "https://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg"
- }
- ],
- "symbols": [],
- "user_mentions": [],
- "hashtags": []
- },
- "retweet_count": 82,
- "in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sat Aug 30 23:49:35 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- "id": 505874922023837696,
- "user": {
- "is_translator": false,
- "id": 903487807,
- "followers_count": 95,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "無言フォローはあまり好みません ゲームと動画が好きですシモ野郎ですがよろしく…最近はMGSとブレイブルー、音ゲーをプレイしてます",
- "id_str": "903487807",
- "default_profile_image": false,
- "location": "関西 ↓詳しいプロ↓",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/500268849275494400/AoXHZ7Ij_normal.jpeg",
- "listed_count": 1,
- "entities": {
- "url": {
- "urls": [
- {
- "indices": [
- 0,
- 22
- ],
- "display_url": "twpf.jp/yuttari1998",
- "url": "http://t.co/Yg9e1Fl8wd",
- "expanded_url": "http://twpf.jp/yuttari1998"
- }
- ]
- },
- "description": {
- "urls": []
- }
- },
- "name": "RT&ファボ魔のむっつんさっm",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Thu Oct 25 08:27:13 +0000 2012",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/903487807/1409062272",
- "protected": false,
- "statuses_count": 10276,
- "friends_count": 158,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": "http://t.co/Yg9e1Fl8wd",
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "yuttari1998",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/500268849275494400/AoXHZ7Ij_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 3652,
- "verified": false
+ "in_reply_to_screen_name": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874922023837696",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "RT @KATANA77: えっそれは・・・(一同) http://t.co/PkCJAcSuYK",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
"entities": {
- "urls": [],
- "media": [
+ "hashtags": [],
+ "user_mentions": [
{
+ "screen_name": "KATANA77",
+ "id": 77915997,
+ "id_str": "77915997",
"indices": [
- 27,
- 49
+ 3,
+ 12
],
- "id": 505864942575034369,
- "media_url": "http://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg",
- "source_status_id_str": "505864943636197376",
+ "name": "(有)刀"
+ }
+ ],
+ "media": [
+ {
+ "display_url": "pic.twitter.com/PkCJAcSuYK",
+ "media_url_https": "https://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg",
+ "expanded_url": "http://twitter.com/KATANA77/status/505864943636197376/photo/1",
"source_status_id": 505864943636197400,
"sizes": {
- "small": {
- "w": 340,
- "resize": "fit",
- "h": 192
- },
"thumb": {
+ "h": 150,
"w": 150,
- "resize": "crop",
- "h": 150
+ "resize": "crop"
},
"large": {
+ "h": 432,
"w": 765,
- "resize": "fit",
- "h": 432
+ "resize": "fit"
},
"medium": {
+ "h": 338,
"w": 600,
- "resize": "fit",
- "h": 338
+ "resize": "fit"
+ },
+ "small": {
+ "h": 192,
+ "w": 340,
+ "resize": "fit"
}
},
- "id_str": "505864942575034369",
- "expanded_url": "http://twitter.com/KATANA77/status/505864943636197376/photo/1",
- "type": "photo",
- "display_url": "pic.twitter.com/PkCJAcSuYK",
- "url": "http://t.co/PkCJAcSuYK",
- "media_url_https": "https://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg"
- }
- ],
- "symbols": [],
- "user_mentions": [
- {
+ "media_url": "http://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg",
"indices": [
- 3,
- 12
+ 27,
+ 49
],
- "id": 77915997,
- "id_str": "77915997",
- "screen_name": "KATANA77",
- "name": "(有)刀"
+ "id": 505864942575034369,
+ "source_status_id_str": "505864943636197376",
+ "id_str": "505864942575034369",
+ "type": "photo",
+ "url": "http://t.co/PkCJAcSuYK"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 82,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @KATANA77: えっそれは・・・(一同) http://t.co/PkCJAcSuYK",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:14 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874920140591104,
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 114786346,
- "followers_count": 1387,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "24 / XXX / @andprotector / @lifefocus0545 potato design works",
- "id_str": "114786346",
- "default_profile_image": false,
- "location": "静岡県長泉町",
- "time_zone": "Osaka",
- "profile_image_url": "http://pbs.twimg.com/profile_images/481360383253295104/4B9Rcfys_normal.jpeg",
- "listed_count": 25,
"entities": {
+ "description": {
+ "urls": []
+ },
"url": {
"urls": [
{
+ "display_url": "twpf.jp/yuttari1998",
+ "url": "http://t.co/Yg9e1Fl8wd",
+ "expanded_url": "http://twpf.jp/yuttari1998",
"indices": [
0,
22
- ],
- "display_url": "ap.furtherplatonix.net/index.html",
- "url": "http://t.co/5EclbQiRX4",
- "expanded_url": "http://ap.furtherplatonix.net/index.html"
+ ]
}
]
- },
- "description": {
- "urls": []
}
},
- "name": "PROTECT-T",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": 32400,
- "created_at": "Tue Feb 16 16:13:41 +0000 2010",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/114786346/1403600232",
"protected": false,
- "statuses_count": 12679,
- "friends_count": 903,
- "profile_link_color": "0084B4",
"profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/500268849275494400/AoXHZ7Ij_normal.jpeg",
+ "name": "RT&ファボ魔のむっつんさっm",
+ "friends_count": 158,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Thu Oct 25 08:27:13 +0000 2012",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/500268849275494400/AoXHZ7Ij_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "903487807",
+ "listed_count": 1,
+ "location": "関西 ↓詳しいプロ↓",
+ "screen_name": "yuttari1998",
"notifications": false,
- "url": "http://t.co/5EclbQiRX4",
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "ttm_protect",
- "default_profile": true,
- "profile_use_background_image": true,
+ "follow_request_sent": false,
+ "description": "無言フォローはあまり好みません ゲームと動画が好きですシモ野郎ですがよろしく…最近はMGSとブレイブルー、音ゲーをプレイしてます",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/481360383253295104/4B9Rcfys_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 10276,
+ "followers_count": 95,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/903487807/1409062272",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 492,
- "verified": false
- },
- "in_reply_to_user_id_str": "114188950",
- "in_reply_to_screen_name": "longhairxMIURA",
- "favorite_count": 0,
- "id_str": "505874920140591104",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "id": 903487807,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 3652,
+ "url": "http://t.co/Yg9e1Fl8wd"
},
- "retweeted": false,
- "contributors": null,
- "text": "@longhairxMIURA 朝一ライカス辛目だよw",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
+ "in_reply_to_status_id": null,
+ "retweet_count": 82,
+ "in_reply_to_status_id_str": null,
+ "id": 505874922023837696,
+ "retweeted": false,
+ "id_str": "505874922023837696",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "longhairxMIURA",
+ "id": 114188950,
+ "id_str": "114188950",
"indices": [
0,
15
],
- "id": 114188950,
- "id_str": "114188950",
- "screen_name": "longhairxMIURA",
"name": "miura desu"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": 505874728897085440,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": 114188950,
"place": null,
+ "in_reply_to_user_id_str": "114188950",
+ "text": "@longhairxMIURA 朝一ライカス辛目だよw",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:14 +0000 2014",
- "in_reply_to_user_id": 114188950,
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "ap.furtherplatonix.net/index.html",
+ "url": "http://t.co/5EclbQiRX4",
+ "expanded_url": "http://ap.furtherplatonix.net/index.html",
+ "indices": [
+ 0,
+ 22
+ ]
+ }
+ ]
+ }
+ },
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/481360383253295104/4B9Rcfys_normal.jpeg",
+ "name": "PROTECT-T",
+ "friends_count": 903,
+ "time_zone": "Osaka",
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Tue Feb 16 16:13:41 +0000 2010",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/481360383253295104/4B9Rcfys_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "114786346",
+ "listed_count": 25,
+ "location": "静岡県長泉町",
+ "screen_name": "ttm_protect",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "24 / XXX / @andprotector / @lifefocus0545 potato design works",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": 32400,
+ "profile_background_tile": false,
+ "statuses_count": 12679,
+ "followers_count": 1387,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/114786346/1403600232",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 114786346,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 492,
+ "url": "http://t.co/5EclbQiRX4"
+ },
+ "in_reply_to_status_id": 505874728897085440,
+ "retweet_count": 0,
"in_reply_to_status_id_str": "505874728897085440",
- "favorited": false
+ "id": 505874920140591104,
+ "retweeted": false,
+ "id_str": "505874920140591104",
+ "geo": null,
+ "in_reply_to_screen_name": "longhairxMIURA"
},
{
"retweeted_status": {
- "id": 505759640164892673,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "ラウワン脱出→友達が家に連んで帰ってって言うから友達ん家に乗せて帰る(1度も行ったことない田舎道)→友達おろして迷子→500メートルくらい続く変な一本道進む→墓地で行き止まりでUターン出来ずバックで500メートル元のところまで進まないといけない←今ここ",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sat Aug 30 16:51:09 +0000 2014",
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 67,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 309565423,
- "followers_count": 730,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "ぱんすと",
- "id_str": "309565423",
- "default_profile_image": false,
- "location": "",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/499126939378929664/GLWpIKTW_normal.jpeg",
- "listed_count": 23,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/499126939378929664/GLWpIKTW_normal.jpeg",
"name": "おもっこ",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 200,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Thu Jun 02 09:15:51 +0000 2011",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/499126939378929664/GLWpIKTW_normal.jpeg",
"geo_enabled": true,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/309565423/1409418370",
- "protected": false,
- "statuses_count": 30012,
- "friends_count": 200,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "309565423",
+ "listed_count": 23,
+ "location": "",
"screen_name": "omo_kko",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ぱんすと",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/499126939378929664/GLWpIKTW_normal.jpeg",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 30012,
+ "followers_count": 730,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/309565423/1409418370",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 309565423,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 5441,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 67,
- "id_str": "505759640164892673",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "ラウワン脱出→友達が家に連んで帰ってって言うから友達ん家に乗せて帰る(1度も行ったことない田舎道)→友達おろして迷子→500メートルくらい続く変な一本道進む→墓地で行き止まりでUターン出来ずバックで500メートル元のところまで進まないといけない←今ここ",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sat Aug 30 16:51:09 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505759640164892673,
+ "retweeted": false,
+ "id_str": "505759640164892673",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874919020699648,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "omo_kko",
+ "id": 309565423,
+ "id_str": "309565423",
+ "indices": [
+ 3,
+ 11
+ ],
+ "name": "おもっこ"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @omo_kko: ラウワン脱出→友達が家に連んで帰ってって言うから友達ん家に乗せて帰る(1度も行ったことない田舎道)→友達おろして迷子→500メートルくらい続く変な一本道進む→墓地で行き止まりでUターン出来ずバックで500メートル元のところまで進まないといけない←今ここ",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:14 +0000 2014",
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 392585658,
- "followers_count": 1324,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "RTしてTLに濁流を起こすからフォローしない方が良いよ 言ってることもつまらないし 詳細→http://t.co/ANSFlYXERJ 相方@1life_5106_hshd 葛西教徒その壱",
- "id_str": "392585658",
- "default_profile_image": false,
- "location": "キミの部屋の燃えるゴミ箱",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/505731759216943107/pzhnkMEg_normal.jpeg",
- "listed_count": 99,
"entities": {
- "url": {
+ "description": {
"urls": [
{
+ "display_url": "twpf.jp/chibu4267",
+ "url": "http://t.co/ANSFlYXERJ",
+ "expanded_url": "http://twpf.jp/chibu4267",
"indices": [
- 0,
- 22
- ],
- "display_url": "pixiv.net/member.php?id=…",
- "url": "http://t.co/JTFjV89eaN",
- "expanded_url": "http://www.pixiv.net/member.php?id=1778417"
+ 45,
+ 67
+ ]
}
]
},
- "description": {
+ "url": {
"urls": [
{
+ "display_url": "pixiv.net/member.php?id=…",
+ "url": "http://t.co/JTFjV89eaN",
+ "expanded_url": "http://www.pixiv.net/member.php?id=1778417",
"indices": [
- 45,
- 67
- ],
- "display_url": "twpf.jp/chibu4267",
- "url": "http://t.co/ANSFlYXERJ",
- "expanded_url": "http://twpf.jp/chibu4267"
+ 0,
+ 22
+ ]
}
]
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/505731759216943107/pzhnkMEg_normal.jpeg",
"name": "原稿",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453106940822814720/PcJIZv43.png",
+ "friends_count": 1165,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Mon Oct 17 08:23:46 +0000 2011",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/505731759216943107/pzhnkMEg_normal.jpeg",
"geo_enabled": true,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/392585658/1362383911",
- "protected": false,
- "statuses_count": 369420,
- "friends_count": 1165,
- "profile_link_color": "5EB9FF",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": "http://t.co/JTFjV89eaN",
- "profile_sidebar_border_color": "FFFFFF",
- "lang": "ja",
+ "id_str": "392585658",
+ "listed_count": 99,
+ "location": "キミの部屋の燃えるゴミ箱",
"screen_name": "chibu4267",
- "default_profile": false,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "RTしてTLに濁流を起こすからフォローしない方が良いよ 言ってることもつまらないし 詳細→http://t.co/ANSFlYXERJ 相方@1life_5106_hshd 葛西教徒その壱",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/453106940822814720/PcJIZv43.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/505731759216943107/pzhnkMEg_normal.jpeg",
+ "utc_offset": 32400,
"profile_background_tile": true,
+ "statuses_count": 369420,
+ "followers_count": 1324,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "FFFFFF",
+ "profile_link_color": "5EB9FF",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/392585658/1362383911",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/453106940822814720/PcJIZv43.png",
- "follow_request_sent": false,
+ "id": 392585658,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 9542,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874919020699648",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @omo_kko: ラウワン脱出→友達が家に連んで帰ってって言うから友達ん家に乗せて帰る(1度も行ったことない田舎道)→友達おろして迷子→500メートルくらい続く変な一本道進む→墓地で行き止まりでUターン出来ずバックで500メートル元のところまで進まないといけない←今ここ",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 11
- ],
- "id": 309565423,
- "id_str": "309565423",
- "screen_name": "omo_kko",
- "name": "おもっこ"
- }
- ],
- "hashtags": []
+ "url": "http://t.co/JTFjV89eaN"
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:14 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874919020699648,
+ "retweeted": false,
+ "id_str": "505874919020699648",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 439430848190742528,
- "user": {
- "is_translator": false,
- "id": 82900665,
- "followers_count": 587,
- "profile_sidebar_fill_color": "99CC33",
- "description": "湯の街の元勃酩姦なんちゃら大 赤い犬の犬(外資系) 肥後で緑ナンバー屋さん勤め\nくだらないことしかつぶやかないし、いちいち訳のわからない記号を連呼するので相当邪魔になると思います。害はないと思います。のりものの画像とかたくさん上げます。さみしい。車輪のついたものならだいたい好き。",
- "id_str": "82900665",
- "default_profile_image": false,
- "location": "かんましき",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/493760276676620289/32oLiTtT_normal.jpeg",
- "listed_count": 30,
- "entities": {
- "description": {
- "urls": []
- }
- },
- "name": "[90]青葉台 芦 (第二粟屋) 屋",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/154137819/__813-1103.jpg",
- "contributors_enabled": false,
- "utc_offset": 32400,
- "created_at": "Fri Oct 16 15:13:32 +0000 2009",
- "is_translation_enabled": false,
- "geo_enabled": true,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/82900665/1398865798",
- "protected": false,
- "statuses_count": 60427,
- "friends_count": 623,
- "profile_link_color": "D02B55",
- "profile_background_color": "352726",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "829D5E",
- "lang": "ja",
- "screen_name": "thsc782_407",
- "default_profile": false,
- "profile_use_background_image": true,
- "profile_text_color": "3E4415",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/493760276676620289/32oLiTtT_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/154137819/__813-1103.jpg",
- "follow_request_sent": false,
- "favourites_count": 1405,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 1526,
- "id_str": "439430848190742528",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "#LEDカツカツ選手権\n漢字一文字ぶんのスペースに「ハウステンボス」を収める狂気 http://t.co/vmrreDMziI",
- "lang": "ja",
- "source": "Twitter Web Client",
- "truncated": false,
"entities": {
- "urls": [],
- "media": [
+ "hashtags": [
{
+ "text": "LEDカツカツ選手権",
"indices": [
- 41,
- 63
- ],
- "id": 439430848194936832,
- "media_url": "http://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg",
+ 0,
+ 11
+ ]
+ }
+ ],
+ "user_mentions": [],
+ "media": [
+ {
+ "display_url": "pic.twitter.com/vmrreDMziI",
+ "media_url_https": "https://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg",
+ "expanded_url": "http://twitter.com/thsc782_407/status/439430848190742528/photo/1",
"sizes": {
"large": {
+ "h": 768,
"w": 1024,
- "resize": "fit",
- "h": 768
- },
- "thumb": {
- "w": 150,
- "resize": "crop",
- "h": 150
+ "resize": "fit"
},
"small": {
+ "h": 255,
"w": 340,
- "resize": "fit",
- "h": 255
+ "resize": "fit"
},
"medium": {
+ "h": 450,
"w": 600,
- "resize": "fit",
- "h": 450
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
}
},
+ "media_url": "http://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg",
+ "indices": [
+ 41,
+ 63
+ ],
+ "id": 439430848194936832,
"id_str": "439430848194936832",
- "expanded_url": "http://twitter.com/thsc782_407/status/439430848190742528/photo/1",
"type": "photo",
- "display_url": "pic.twitter.com/vmrreDMziI",
- "url": "http://t.co/vmrreDMziI",
- "media_url_https": "https://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg"
+ "url": "http://t.co/vmrreDMziI"
}
],
- "symbols": [],
- "user_mentions": [],
- "hashtags": [
- {
- "indices": [
- 0,
- 11
- ],
- "text": "LEDカツカツ選手権"
- }
- ]
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 3291,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "#LEDカツカツ選手権\n漢字一文字ぶんのスペースに「ハウステンボス」を収める狂気 http://t.co/vmrreDMziI",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
"created_at": "Fri Feb 28 16:04:13 +0000 2014",
- "in_reply_to_user_id": null,
+ "source": "Twitter Web Client",
+ "lang": "ja",
+ "favorite_count": 1526,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "352726",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/493760276676620289/32oLiTtT_normal.jpeg",
+ "name": "[90]青葉台 芦 (第二粟屋) 屋",
+ "friends_count": 623,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Fri Oct 16 15:13:32 +0000 2009",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/493760276676620289/32oLiTtT_normal.jpeg",
+ "geo_enabled": true,
+ "id_str": "82900665",
+ "listed_count": 30,
+ "location": "かんましき",
+ "screen_name": "thsc782_407",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "湯の街の元勃酩姦なんちゃら大 赤い犬の犬(外資系) 肥後で緑ナンバー屋さん勤め\nくだらないことしかつぶやかないし、いちいち訳のわからない記号を連呼するので相当邪魔になると思います。害はないと思います。のりものの画像とかたくさん上げます。さみしい。車輪のついたものならだいたい好き。",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/154137819/__813-1103.jpg",
+ "profile_text_color": "3E4415",
+ "utc_offset": 32400,
+ "profile_background_tile": false,
+ "statuses_count": 60427,
+ "followers_count": 587,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "829D5E",
+ "profile_link_color": "D02B55",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/82900665/1398865798",
+ "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/154137819/__813-1103.jpg",
+ "id": 82900665,
+ "profile_sidebar_fill_color": "99CC33",
+ "verified": false,
+ "favourites_count": 1405,
+ "url": null
+ },
+ "in_reply_to_status_id": null,
+ "retweet_count": 3291,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 439430848190742528,
+ "retweeted": false,
+ "id_str": "439430848190742528",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874918198624256,
- "user": {
- "is_translator": false,
- "id": 753161754,
- "followers_count": 217,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "猫×6、大学・高校・旦那各1と暮らしています。猫、子供、日常思った事をつぶやいています/今年の目標:読書、庭の手入れ、ランニング、手芸/猫*花*写真*詩*林ももこさん*鉄道など好きな方をフォローさせていただいています。よろしくお願いします♬",
- "id_str": "753161754",
- "default_profile_image": false,
- "location": "ソーダ水のあふれるビンの中",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/470627990271848448/m83uy6Vc_normal.jpeg",
- "listed_count": 8,
- "entities": {
- "description": {
- "urls": []
- }
- },
- "name": "ねこねこみかん*",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": 32400,
- "created_at": "Sun Aug 12 14:00:47 +0000 2012",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "protected": false,
- "statuses_count": 20621,
- "friends_count": 258,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "nekonekomikan",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/470627990271848448/m83uy6Vc_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 7650,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874918198624256",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "RT @thsc782_407: #LEDカツカツ選手権\n漢字一文字ぶんのスペースに「ハウステンボス」を収める狂気 http://t.co/vmrreDMziI",
- "lang": "ja",
- "source": "Twitter for Android",
- "truncated": false,
"entities": {
- "urls": [],
- "media": [
+ "hashtags": [
{
+ "text": "LEDカツカツ選手権",
"indices": [
- 58,
- 80
+ 17,
+ 28
+ ]
+ }
+ ],
+ "user_mentions": [
+ {
+ "screen_name": "thsc782_407",
+ "id": 82900665,
+ "id_str": "82900665",
+ "indices": [
+ 3,
+ 15
],
- "id": 439430848194936832,
- "media_url": "http://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg",
- "source_status_id_str": "439430848190742528",
+ "name": "[90]青葉台 芦 (第二粟屋) 屋"
+ }
+ ],
+ "media": [
+ {
+ "display_url": "pic.twitter.com/vmrreDMziI",
+ "media_url_https": "https://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg",
+ "expanded_url": "http://twitter.com/thsc782_407/status/439430848190742528/photo/1",
"source_status_id": 439430848190742500,
"sizes": {
"large": {
+ "h": 768,
"w": 1024,
- "resize": "fit",
- "h": 768
- },
- "thumb": {
- "w": 150,
- "resize": "crop",
- "h": 150
+ "resize": "fit"
},
"small": {
+ "h": 255,
"w": 340,
- "resize": "fit",
- "h": 255
+ "resize": "fit"
},
"medium": {
+ "h": 450,
"w": 600,
- "resize": "fit",
- "h": 450
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
}
},
- "id_str": "439430848194936832",
- "expanded_url": "http://twitter.com/thsc782_407/status/439430848190742528/photo/1",
- "type": "photo",
- "display_url": "pic.twitter.com/vmrreDMziI",
- "url": "http://t.co/vmrreDMziI",
- "media_url_https": "https://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg"
- }
- ],
- "symbols": [],
- "user_mentions": [
- {
+ "media_url": "http://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg",
"indices": [
- 3,
- 15
+ 58,
+ 80
],
- "id": 82900665,
- "id_str": "82900665",
- "screen_name": "thsc782_407",
- "name": "[90]青葉台 芦 (第二粟屋) 屋"
+ "id": 439430848194936832,
+ "source_status_id_str": "439430848190742528",
+ "id_str": "439430848194936832",
+ "type": "photo",
+ "url": "http://t.co/vmrreDMziI"
}
],
- "hashtags": [
- {
- "indices": [
- 17,
- 28
- ],
- "text": "LEDカツカツ選手権"
- }
- ]
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 3291,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @thsc782_407: #LEDカツカツ選手権\n漢字一文字ぶんのスペースに「ハウステンボス」を収める狂気 http://t.co/vmrreDMziI",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:13 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874918039228416,
+ "source": "Twitter for Android",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2530194984,
- "followers_count": 113,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "川之江中高生の川之江中高生による川之江中高生のためのあるあるアカウントです。タイムリーなネタはお気に入りにあります。",
- "id_str": "2530194984",
- "default_profile_image": false,
- "location": "DMにてネタ提供待ってますよ",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/471668359314948097/XbIyXiZK_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
- "name": "川之江中高生あるある",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Wed May 28 15:01:43 +0000 2014",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2530194984/1401289473",
"protected": false,
- "statuses_count": 4472,
- "friends_count": 157,
- "profile_link_color": "0084B4",
"profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/470627990271848448/m83uy6Vc_normal.jpeg",
+ "name": "ねこねこみかん*",
+ "friends_count": 258,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Sun Aug 12 14:00:47 +0000 2012",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/470627990271848448/m83uy6Vc_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "753161754",
+ "listed_count": 8,
+ "location": "ソーダ水のあふれるビンの中",
+ "screen_name": "nekonekomikan",
"notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "kw_aru",
- "default_profile": true,
- "profile_use_background_image": true,
+ "follow_request_sent": false,
+ "description": "猫×6、大学・高校・旦那各1と暮らしています。猫、子供、日常思った事をつぶやいています/今年の目標:読書、庭の手入れ、ランニング、手芸/猫*花*写真*詩*林ももこさん*鉄道など好きな方をフォローさせていただいています。よろしくお願いします♬",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/471668359314948097/XbIyXiZK_normal.jpeg",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 20621,
+ "followers_count": 217,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "lang": "ja",
+ "following": false,
+ "default_profile": true,
+ "is_translator": false,
+ "profile_link_color": "0084B4",
+ "profile_sidebar_border_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 30,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874918039228416",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "id": 753161754,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 7650,
+ "url": null
},
+ "in_reply_to_status_id": null,
+ "retweet_count": 3291,
+ "in_reply_to_status_id_str": null,
+ "id": 505874918198624256,
"retweeted": false,
- "contributors": null,
- "text": "【金一地区太鼓台】川関と小山の見分けがつかない",
- "lang": "ja",
- "source": "twittbot.net",
- "truncated": false,
+ "id_str": "505874918198624256",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "【金一地区太鼓台】川関と小山の見分けがつかない",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:13 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874915338104833,
+ "source": "twittbot.net",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 428179337,
- "followers_count": 104,
- "profile_sidebar_fill_color": "252429",
- "description": "bot遊びと実況が主目的の趣味アカウント。成人済♀。時々TLお騒がせします。リフォ率低いですがF/Bご自由に。スパムはブロック![HOT]K[アニメ]タイバニ/K/薄桜鬼/トライガン/進撃[小説]冲方丁/森博嗣[漫画]内藤泰弘/高河ゆん[他]声優/演劇 ※@sano_bot1二代目管理人",
- "id_str": "428179337",
- "default_profile_image": false,
- "location": "東京都",
- "time_zone": "Hawaii",
- "profile_image_url": "http://pbs.twimg.com/profile_images/3350624721/755920942e4f512e6ba489df7eb1147e_normal.jpeg",
- "listed_count": 2,
"entities": {
"description": {
"urls": []
}
},
- "name": "サラ",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/601682567/put73jtg48ytjylq00if.jpeg",
- "contributors_enabled": false,
- "utc_offset": -36000,
- "created_at": "Sun Dec 04 12:51:18 +0000 2011",
- "is_translation_enabled": false,
- "geo_enabled": false,
"protected": false,
- "statuses_count": 25303,
- "friends_count": 421,
- "profile_link_color": "2FC2EF",
- "profile_background_color": "1A1B1F",
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/471668359314948097/XbIyXiZK_normal.jpeg",
+ "name": "川之江中高生あるある",
+ "friends_count": 157,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Wed May 28 15:01:43 +0000 2014",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/471668359314948097/XbIyXiZK_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "2530194984",
+ "listed_count": 0,
+ "location": "DMにてネタ提供待ってますよ",
+ "screen_name": "kw_aru",
"notifications": false,
- "url": null,
- "profile_sidebar_border_color": "181A1E",
- "lang": "ja",
- "screen_name": "sala_mgn",
- "default_profile": false,
+ "follow_request_sent": false,
+ "description": "川之江中高生の川之江中高生による川之江中高生のためのあるあるアカウントです。タイムリーなネタはお気に入りにあります。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 4472,
+ "followers_count": 113,
"profile_use_background_image": true,
- "profile_text_color": "666666",
+ "default_profile_image": false,
"following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/3350624721/755920942e4f512e6ba489df7eb1147e_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/601682567/put73jtg48ytjylq00if.jpeg",
- "follow_request_sent": false,
- "favourites_count": 3257,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874915338104833",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2530194984/1401289473",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2530194984,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 30,
+ "url": null
},
+ "in_reply_to_status_id": null,
+ "retweet_count": 0,
+ "in_reply_to_status_id_str": null,
+ "id": 505874918039228416,
"retweeted": false,
- "contributors": null,
- "text": "おはようございますん♪ SSDSのDVDが朝一で届いた〜(≧∇≦)",
- "lang": "ja",
- "source": "TweetList!",
- "truncated": false,
+ "id_str": "505874918039228416",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "おはようございますん♪ SSDSのDVDが朝一で届いた〜(≧∇≦)",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:13 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874914897690624,
+ "source": "TweetList!",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2364828518,
- "followers_count": 28,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "アイコンは兄さんから!",
- "id_str": "2364828518",
- "default_profile_image": false,
- "location": "変態/日常/創作/室町/たまに版権",
- "time_zone": "Seoul",
- "profile_image_url": "http://pbs.twimg.com/profile_images/505170142284640256/rnW4XeEJ_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
- "name": "雨",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/504434510675443713/lvW7ad5b.jpeg",
- "contributors_enabled": false,
- "utc_offset": 32400,
- "created_at": "Fri Feb 28 00:28:40 +0000 2014",
+ "protected": false,
+ "profile_background_color": "1A1B1F",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/3350624721/755920942e4f512e6ba489df7eb1147e_normal.jpeg",
+ "name": "サラ",
+ "friends_count": 421,
+ "time_zone": "Hawaii",
"is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Sun Dec 04 12:51:18 +0000 2011",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/3350624721/755920942e4f512e6ba489df7eb1147e_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2364828518/1409087198",
- "protected": false,
- "statuses_count": 193,
- "friends_count": 28,
- "profile_link_color": "0D31BF",
- "profile_background_color": "000000",
+ "id_str": "428179337",
+ "listed_count": 2,
+ "location": "東京都",
+ "screen_name": "sala_mgn",
"notifications": false,
- "url": null,
- "profile_sidebar_border_color": "000000",
- "lang": "ja",
- "screen_name": "tear_dice",
- "default_profile": false,
+ "follow_request_sent": false,
+ "description": "bot遊びと実況が主目的の趣味アカウント。成人済♀。時々TLお騒がせします。リフォ率低いですがF/Bご自由に。スパムはブロック![HOT]K[アニメ]タイバニ/K/薄桜鬼/トライガン/進撃[小説]冲方丁/森博嗣[漫画]内藤泰弘/高河ゆん[他]声優/演劇 ※@sano_bot1二代目管理人",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/601682567/put73jtg48ytjylq00if.jpeg",
+ "profile_text_color": "666666",
+ "utc_offset": -36000,
+ "profile_background_tile": false,
+ "statuses_count": 25303,
+ "followers_count": 104,
"profile_use_background_image": true,
- "profile_text_color": "333333",
+ "default_profile_image": false,
+ "lang": "ja",
"following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/505170142284640256/rnW4XeEJ_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/504434510675443713/lvW7ad5b.jpeg",
- "follow_request_sent": false,
- "favourites_count": 109,
- "verified": false
- },
- "in_reply_to_user_id_str": "531544559",
- "in_reply_to_screen_name": "ran_kirazuki",
- "favorite_count": 0,
- "id_str": "505874914897690624",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "default_profile": false,
+ "is_translator": false,
+ "profile_link_color": "2FC2EF",
+ "profile_sidebar_border_color": "181A1E",
+ "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/601682567/put73jtg48ytjylq00if.jpeg",
+ "id": 428179337,
+ "profile_sidebar_fill_color": "252429",
+ "verified": false,
+ "favourites_count": 3257,
+ "url": null
},
+ "in_reply_to_status_id": null,
+ "retweet_count": 0,
+ "in_reply_to_status_id_str": null,
+ "id": 505874915338104833,
"retweeted": false,
- "contributors": null,
- "text": "@ran_kirazuki そのようなお言葉を頂けるとは……!この雨太郎、誠心誠意を持って姉御の足の指の第一関節を崇め奉りとうございます",
- "lang": "ja",
- "source": "Twitter for Android",
- "truncated": false,
+ "id_str": "505874915338104833",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "ran_kirazuki",
+ "id": 531544559,
+ "id_str": "531544559",
"indices": [
0,
13
],
- "id": 531544559,
- "id_str": "531544559",
- "screen_name": "ran_kirazuki",
"name": "蘭ぴよの日常"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": 505874276692406272,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": 531544559,
"place": null,
+ "in_reply_to_user_id_str": "531544559",
+ "text": "@ran_kirazuki そのようなお言葉を頂けるとは……!この雨太郎、誠心誠意を持って姉御の足の指の第一関節を崇め奉りとうございます",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:13 +0000 2014",
- "in_reply_to_user_id": 531544559,
+ "source": "Twitter for Android",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "000000",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/505170142284640256/rnW4XeEJ_normal.jpeg",
+ "name": "雨",
+ "friends_count": 28,
+ "time_zone": "Seoul",
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Fri Feb 28 00:28:40 +0000 2014",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/505170142284640256/rnW4XeEJ_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "2364828518",
+ "listed_count": 0,
+ "location": "変態/日常/創作/室町/たまに版権",
+ "screen_name": "tear_dice",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "アイコンは兄さんから!",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/504434510675443713/lvW7ad5b.jpeg",
+ "profile_text_color": "333333",
+ "utc_offset": 32400,
+ "profile_background_tile": false,
+ "statuses_count": 193,
+ "followers_count": 28,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "000000",
+ "profile_link_color": "0D31BF",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2364828518/1409087198",
+ "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/504434510675443713/lvW7ad5b.jpeg",
+ "id": 2364828518,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 109,
+ "url": null
+ },
+ "in_reply_to_status_id": 505874276692406272,
+ "retweet_count": 0,
"in_reply_to_status_id_str": "505874276692406272",
- "favorited": false
+ "id": 505874914897690624,
+ "retweeted": false,
+ "id_str": "505874914897690624",
+ "geo": null,
+ "in_reply_to_screen_name": "ran_kirazuki"
},
{
"retweeted_status": {
- "id": 505731620456771584,
- "user": {
- "is_translator": false,
- "id": 1680668713,
- "followers_count": 429,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "2310*basketball#41*UVERworld*Pooh☪Bell +.。*弱さを知って強くなれ*゚",
- "id_str": "1680668713",
- "default_profile_image": false,
- "location": "埼玉",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/504643170886365185/JN_dlwUd_normal.jpeg",
- "listed_count": 0,
- "entities": {
- "description": {
- "urls": []
- }
- },
- "name": "★Shiiiii!☆",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Sun Aug 18 12:45:00 +0000 2013",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/1680668713/1408805886",
- "protected": false,
- "statuses_count": 6352,
- "friends_count": 434,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "AFmbsk",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/504643170886365185/JN_dlwUd_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 2488,
- "verified": false
- },
- "in_reply_to_user_id_str": "2179759316",
- "in_reply_to_screen_name": "samao21718",
- "favorite_count": 1,
- "id_str": "505731620456771584",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "@samao21718 \n呼び方☞まおちゃん\n呼ばれ方☞あーちゃん\n第一印象☞平野から?!\n今の印象☞おとなっぽい!!\nLINE交換☞もってるん\\( ˆoˆ )/\nトプ画について☞楽しそうでいーな😳\n家族にするなら☞おねぇちゃん\n最後に一言☞全然会えないねー今度会えたらいいな!",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "samao21718",
+ "id": 2179759316,
+ "id_str": "2179759316",
"indices": [
0,
11
],
- "id": 2179759316,
- "id_str": "2179759316",
- "screen_name": "samao21718",
"name": "まお"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 1,
- "in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sat Aug 30 14:59:49 +0000 2014",
+ "truncated": false,
"in_reply_to_user_id": 2179759316,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- "id": 505874914591514626,
- "user": {
- "is_translator": false,
- "id": 2179759316,
- "followers_count": 111,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "゚.*97line おさらに貢いでる系女子*.゜ DISH// ✯ 佐野悠斗 ✯ 読モ ✯ WEGO ✯ 嵐 I met @OTYOfficial in the London ;)",
- "id_str": "2179759316",
- "default_profile_image": false,
- "location": "埼玉 UK留学してました✈",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501535615351926784/c5AAh6Sz_normal.jpeg",
- "listed_count": 0,
- "entities": {
- "description": {
- "urls": []
- }
+ "place": null,
+ "in_reply_to_user_id_str": "2179759316",
+ "text": "@samao21718 \n呼び方☞まおちゃん\n呼ばれ方☞あーちゃん\n第一印象☞平野から?!\n今の印象☞おとなっぽい!!\nLINE交換☞もってるん\\( ˆoˆ )/\nトプ画について☞楽しそうでいーな😳\n家族にするなら☞おねぇちゃん\n最後に一言☞全然会えないねー今度会えたらいいな!",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
},
- "name": "まお",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Thu Nov 07 09:47:41 +0000 2013",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2179759316/1407640217",
- "protected": false,
- "statuses_count": 1777,
- "friends_count": 121,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sat Aug 30 14:59:49 +0000 2014",
+ "source": "Twitter for iPhone",
"lang": "ja",
- "screen_name": "samao21718",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501535615351926784/c5AAh6Sz_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 321,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874914591514626",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "favorite_count": 1,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/504643170886365185/JN_dlwUd_normal.jpeg",
+ "name": "★Shiiiii!☆",
+ "friends_count": 434,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Sun Aug 18 12:45:00 +0000 2013",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/504643170886365185/JN_dlwUd_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "1680668713",
+ "listed_count": 0,
+ "location": "埼玉",
+ "screen_name": "AFmbsk",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "2310*basketball#41*UVERworld*Pooh☪Bell +.。*弱さを知って強くなれ*゚",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 6352,
+ "followers_count": 429,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1680668713/1408805886",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 1680668713,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 2488,
+ "url": null
+ },
+ "in_reply_to_status_id": null,
+ "retweet_count": 1,
+ "in_reply_to_status_id_str": null,
+ "id": 505731620456771584,
+ "retweeted": false,
+ "id_str": "505731620456771584",
+ "geo": null,
+ "in_reply_to_screen_name": "samao21718"
},
- "retweeted": false,
- "contributors": null,
- "text": "RT @AFmbsk: @samao21718 \n呼び方☞まおちゃん\n呼ばれ方☞あーちゃん\n第一印象☞平野から?!\n今の印象☞おとなっぽい!!\nLINE交換☞もってるん\\( ˆoˆ )/\nトプ画について☞楽しそうでいーな😳\n家族にするなら☞おねぇちゃん\n最後に一言☞全然会えない…",
- "lang": "ja",
- "source": "Twitter for Android",
- "truncated": false,
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "AFmbsk",
+ "id": 1680668713,
+ "id_str": "1680668713",
"indices": [
3,
10
],
- "id": 1680668713,
- "id_str": "1680668713",
- "screen_name": "AFmbsk",
"name": "★Shiiiii!☆"
},
{
+ "screen_name": "samao21718",
+ "id": 2179759316,
+ "id_str": "2179759316",
"indices": [
12,
23
],
- "id": 2179759316,
- "id_str": "2179759316",
- "screen_name": "samao21718",
"name": "まお"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 1,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @AFmbsk: @samao21718 \n呼び方☞まおちゃん\n呼ばれ方☞あーちゃん\n第一印象☞平野から?!\n今の印象☞おとなっぽい!!\nLINE交換☞もってるん\\( ˆoˆ )/\nトプ画について☞楽しそうでいーな😳\n家族にするなら☞おねぇちゃん\n最後に一言☞全然会えない…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:13 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874905712189440,
+ "source": "Twitter for Android",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1330420010,
- "followers_count": 4,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "宮本武蔵の自誓書、「獨行道」に記された二十一箇条をランダムにつぶやくbotです。",
- "id_str": "1330420010",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/3482551671/d9e749f7658b523bdd50b7584ed4ba6a_normal.jpeg",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
- "name": "獨行道bot",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Sat Apr 06 01:19:55 +0000 2013",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/1330420010/1365212335",
"protected": false,
- "statuses_count": 9639,
- "friends_count": 5,
- "profile_link_color": "0084B4",
"profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501535615351926784/c5AAh6Sz_normal.jpeg",
+ "name": "まお",
+ "friends_count": 121,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Thu Nov 07 09:47:41 +0000 2013",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501535615351926784/c5AAh6Sz_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "2179759316",
+ "listed_count": 0,
+ "location": "埼玉 UK留学してました✈",
+ "screen_name": "samao21718",
"notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "dokkodo_bot",
- "default_profile": true,
- "profile_use_background_image": true,
+ "follow_request_sent": false,
+ "description": "゚.*97line おさらに貢いでる系女子*.゜ DISH// ✯ 佐野悠斗 ✯ 読モ ✯ WEGO ✯ 嵐 I met @OTYOfficial in the London ;)",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/3482551671/d9e749f7658b523bdd50b7584ed4ba6a_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874905712189440",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "statuses_count": 1777,
+ "followers_count": 111,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2179759316/1407640217",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2179759316,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 321,
+ "url": null
},
+ "in_reply_to_status_id": null,
+ "retweet_count": 1,
+ "in_reply_to_status_id_str": null,
+ "id": 505874914591514626,
"retweeted": false,
- "contributors": null,
- "text": "一、常に身一つ簡素にして、美食を好んではならない",
- "lang": "ja",
- "source": "twittbot.net",
- "truncated": false,
+ "id_str": "505874914591514626",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一、常に身一つ簡素にして、美食を好んではならない",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:10 +0000 2014",
- "in_reply_to_user_id": null,
+ "source": "twittbot.net",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/3482551671/d9e749f7658b523bdd50b7584ed4ba6a_normal.jpeg",
+ "name": "獨行道bot",
+ "friends_count": 5,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Sat Apr 06 01:19:55 +0000 2013",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/3482551671/d9e749f7658b523bdd50b7584ed4ba6a_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "1330420010",
+ "listed_count": 1,
+ "location": "",
+ "screen_name": "dokkodo_bot",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "宮本武蔵の自誓書、「獨行道」に記された二十一箇条をランダムにつぶやくbotです。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 9639,
+ "followers_count": 4,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1330420010/1365212335",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 1330420010,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
+ },
+ "in_reply_to_status_id": null,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874905712189440,
+ "retweeted": false,
+ "id_str": "505874905712189440",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "url": null
},
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
- },
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874903094939648,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:10 +0000 2014",
+ "source": "モテモテ大作戦★男子編",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2714526565,
- "followers_count": 664,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "やっぱりモテモテ男子になりたい!自分を磨くヒントをみつけたい!応援してくれる人は RT & 相互フォローで みなさん、お願いします♪",
- "id_str": "2714526565",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/497368689386086400/7hqdKMzG_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/497368689386086400/7hqdKMzG_normal.jpeg",
"name": "モテモテ大作戦★男子編",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1835,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Thu Aug 07 12:59:59 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/497368689386086400/7hqdKMzG_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2714526565/1407416898",
- "protected": false,
- "statuses_count": 597,
- "friends_count": 1835,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
+ "id_str": "2714526565",
+ "listed_count": 0,
+ "location": "",
+ "screen_name": "mote_danshi1",
"notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "mote_danshi1",
- "default_profile": true,
- "profile_use_background_image": true,
+ "follow_request_sent": false,
+ "description": "やっぱりモテモテ男子になりたい!自分を磨くヒントをみつけたい!応援してくれる人は RT & 相互フォローで みなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/497368689386086400/7hqdKMzG_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 597,
+ "followers_count": 664,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2714526565/1407416898",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2714526565,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874903094939648",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "モテモテ大作戦★男子編",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:10 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874903094939648,
+ "retweeted": false,
+ "id_str": "505874903094939648",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874902390276096,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:10 +0000 2014",
+ "source": "心に響くアツい名言集",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2699261263,
- "followers_count": 183,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "人生の格言は、人の心や人生を瞬時にに動かしてしまうことがある。\r\nそんな言葉の重みを味わおう。\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
- "id_str": "2699261263",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/495328654126112768/1rKnNuWK_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/495328654126112768/1rKnNuWK_normal.jpeg",
"name": "心に響くアツい名言集",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1126,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Fri Aug 01 22:00:00 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/495328654126112768/1rKnNuWK_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2699261263/1406930543",
- "protected": false,
- "statuses_count": 749,
- "friends_count": 1126,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2699261263",
+ "listed_count": 0,
+ "location": "",
"screen_name": "kokoro_meigen11",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "人生の格言は、人の心や人生を瞬時にに動かしてしまうことがある。\r\nそんな言葉の重みを味わおう。\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/495328654126112768/1rKnNuWK_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 749,
+ "followers_count": 183,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2699261263/1406930543",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2699261263,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
+ "in_reply_to_status_id_str": null,
+ "id": 505874902390276096,
+ "retweeted": false,
"id_str": "505874902390276096",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "心に響くアツい名言集",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
- },
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:10 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505868866686169089,
- "user": {
- "is_translator": false,
- "id": 359324738,
- "followers_count": 9612,
- "profile_sidebar_fill_color": "EFEFEF",
- "description": "ブリヂストンのスポーツタイヤ「POTENZA」のアカウントです。レースやタイヤの事などをつぶやきます。今シーズンも「チャンピオンタイヤの称号は譲らない」をキャッチコピーに、タイヤ供給チームを全力でサポートしていきますので、応援よろしくお願いします!なお、返信ができない場合もありますので、ご了承よろしくお願い致します。",
- "id_str": "359324738",
- "default_profile_image": false,
- "location": "",
- "time_zone": "Hawaii",
- "profile_image_url": "http://pbs.twimg.com/profile_images/1507885396/TW_image_normal.jpg",
- "listed_count": 373,
- "entities": {
- "url": {
- "urls": [
- {
- "indices": [
- 0,
- 22
- ],
- "display_url": "bridgestone.co.jp/sc/potenza/",
- "url": "http://t.co/LruVPk5x4K",
- "expanded_url": "http://www.bridgestone.co.jp/sc/potenza/"
- }
- ]
- },
- "description": {
- "urls": []
- }
- },
- "name": "POTENZA_SUPERGT",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
- "contributors_enabled": false,
- "utc_offset": -36000,
- "created_at": "Sun Aug 21 11:33:38 +0000 2011",
- "is_translation_enabled": false,
- "geo_enabled": true,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/359324738/1402546267",
- "protected": false,
- "statuses_count": 10032,
- "friends_count": 308,
- "profile_link_color": "FF2424",
- "profile_background_color": "131516",
- "notifications": false,
- "url": "http://t.co/LruVPk5x4K",
- "profile_sidebar_border_color": "EEEEEE",
- "lang": "ja",
- "screen_name": "POTENZA_SUPERGT",
- "default_profile": false,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/1507885396/TW_image_normal.jpg",
- "profile_background_tile": true,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
- "follow_request_sent": false,
- "favourites_count": 26,
- "verified": false
- },
- "in_reply_to_user_id_str": "333344408",
- "in_reply_to_screen_name": "8CBR8",
- "favorite_count": 0,
- "id_str": "505868866686169089",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "ありがとうございます!“@8CBR8: @POTENZA_SUPERGT 13時半ごろ一雨きそうですが、無事全車決勝レース完走出来ること祈ってます! http://t.co/FzTyFnt9xH”",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
"entities": {
- "urls": [],
- "media": [
+ "hashtags": [],
+ "user_mentions": [
{
+ "screen_name": "8CBR8",
+ "id": 333344408,
+ "id_str": "333344408",
"indices": [
- 75,
- 97
+ 12,
+ 18
],
- "id": 505868690252779521,
- "media_url": "http://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg",
- "source_status_id_str": "505868690588303360",
+ "name": "CBR Rider #17 KEIHIN"
+ },
+ {
+ "screen_name": "POTENZA_SUPERGT",
+ "id": 359324738,
+ "id_str": "359324738",
+ "indices": [
+ 20,
+ 36
+ ],
+ "name": "POTENZA_SUPERGT"
+ }
+ ],
+ "media": [
+ {
+ "display_url": "pic.twitter.com/FzTyFnt9xH",
+ "media_url_https": "https://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg",
+ "expanded_url": "http://twitter.com/8CBR8/status/505868690588303360/photo/1",
"source_status_id": 505868690588303360,
"sizes": {
- "large": {
- "w": 1024,
- "resize": "fit",
- "h": 682
- },
"thumb": {
+ "h": 150,
"w": 150,
- "resize": "crop",
- "h": 150
+ "resize": "crop"
},
"small": {
+ "h": 226,
"w": 340,
- "resize": "fit",
- "h": 226
+ "resize": "fit"
},
"medium": {
+ "h": 399,
"w": 600,
- "resize": "fit",
- "h": 399
+ "resize": "fit"
+ },
+ "large": {
+ "h": 682,
+ "w": 1024,
+ "resize": "fit"
}
},
+ "media_url": "http://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg",
+ "indices": [
+ 75,
+ 97
+ ],
+ "id": 505868690252779521,
+ "source_status_id_str": "505868690588303360",
"id_str": "505868690252779521",
- "expanded_url": "http://twitter.com/8CBR8/status/505868690588303360/photo/1",
"type": "photo",
- "display_url": "pic.twitter.com/FzTyFnt9xH",
- "url": "http://t.co/FzTyFnt9xH",
- "media_url_https": "https://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg"
+ "url": "http://t.co/FzTyFnt9xH"
}
],
- "symbols": [],
- "user_mentions": [
- {
- "indices": [
- 12,
- 18
- ],
- "id": 333344408,
- "id_str": "333344408",
- "screen_name": "8CBR8",
- "name": "CBR Rider #17 KEIHIN"
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": 333344408,
+ "place": null,
+ "in_reply_to_user_id_str": "333344408",
+ "text": "ありがとうございます!“@8CBR8: @POTENZA_SUPERGT 13時半ごろ一雨きそうですが、無事全車決勝レース完走出来ること祈ってます! http://t.co/FzTyFnt9xH”",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:05:11 +0000 2014",
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
},
- {
- "indices": [
- 20,
- 36
- ],
- "id": 359324738,
- "id_str": "359324738",
- "screen_name": "POTENZA_SUPERGT",
- "name": "POTENZA_SUPERGT"
+ "url": {
+ "urls": [
+ {
+ "display_url": "bridgestone.co.jp/sc/potenza/",
+ "url": "http://t.co/LruVPk5x4K",
+ "expanded_url": "http://www.bridgestone.co.jp/sc/potenza/",
+ "indices": [
+ 0,
+ 22
+ ]
+ }
+ ]
}
- ],
- "hashtags": []
+ },
+ "protected": false,
+ "profile_background_color": "131516",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/1507885396/TW_image_normal.jpg",
+ "name": "POTENZA_SUPERGT",
+ "friends_count": 308,
+ "time_zone": "Hawaii",
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Sun Aug 21 11:33:38 +0000 2011",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1507885396/TW_image_normal.jpg",
+ "geo_enabled": true,
+ "id_str": "359324738",
+ "listed_count": 373,
+ "location": "",
+ "screen_name": "POTENZA_SUPERGT",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ブリヂストンのスポーツタイヤ「POTENZA」のアカウントです。レースやタイヤの事などをつぶやきます。今シーズンも「チャンピオンタイヤの称号は譲らない」をキャッチコピーに、タイヤ供給チームを全力でサポートしていきますので、応援よろしくお願いします!なお、返信ができない場合もありますので、ご了承よろしくお願い致します。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
+ "profile_text_color": "333333",
+ "utc_offset": -36000,
+ "profile_background_tile": true,
+ "statuses_count": 10032,
+ "followers_count": 9612,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "EEEEEE",
+ "profile_link_color": "FF2424",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/359324738/1402546267",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
+ "id": 359324738,
+ "profile_sidebar_fill_color": "EFEFEF",
+ "verified": false,
+ "favourites_count": 26,
+ "url": "http://t.co/LruVPk5x4K"
},
- "retweet_count": 7,
"in_reply_to_status_id": 505868690588303360,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:05:11 +0000 2014",
- "in_reply_to_user_id": 333344408,
+ "retweet_count": 7,
"in_reply_to_status_id_str": "505868690588303360",
- "favorited": false
- },
- "id": 505874902247677954,
- "user": {
- "is_translator": false,
- "id": 1021030416,
- "followers_count": 257,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "F1.GP2.Superformula.SuperGT.F3...\nスーパーGTが大好き♡車が好き!新幹線も好き!飛行機も好き!こっそり別アカです(๑´ㅂ`๑)♡*.+゜",
- "id_str": "1021030416",
- "default_profile_image": false,
- "location": "晴れの国なのに何故か開幕戦では雨や雪や冰や霰が降る✨",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/444312241395863552/FKl40ebQ_normal.jpeg",
- "listed_count": 2,
- "entities": {
- "description": {
- "urls": []
- }
- },
- "name": "narur",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/462180217574789121/1Jf6m_2L.jpeg",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Wed Dec 19 01:14:41 +0000 2012",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "protected": false,
- "statuses_count": 55417,
- "friends_count": 237,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "narur2",
- "default_profile": false,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/444312241395863552/FKl40ebQ_normal.jpeg",
- "profile_background_tile": true,
- "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/462180217574789121/1Jf6m_2L.jpeg",
- "follow_request_sent": false,
- "favourites_count": 547,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874902247677954",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "id": 505868866686169089,
+ "retweeted": false,
+ "id_str": "505868866686169089",
+ "geo": null,
+ "in_reply_to_screen_name": "8CBR8"
},
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "RT @POTENZA_SUPERGT: ありがとうございます!“@8CBR8: @POTENZA_SUPERGT 13時半ごろ一雨きそうですが、無事全車決勝レース完走出来ること祈ってます! http://t.co/FzTyFnt9xH”",
- "lang": "ja",
- "source": "jigtwi",
- "truncated": false,
"entities": {
- "urls": [],
- "media": [
- {
- "indices": [
- 96,
- 118
- ],
- "id": 505868690252779521,
- "media_url": "http://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg",
- "source_status_id_str": "505868690588303360",
- "source_status_id": 505868690588303360,
- "sizes": {
- "large": {
- "w": 1024,
- "resize": "fit",
- "h": 682
- },
- "thumb": {
- "w": 150,
- "resize": "crop",
- "h": 150
- },
- "small": {
- "w": 340,
- "resize": "fit",
- "h": 226
- },
- "medium": {
- "w": 600,
- "resize": "fit",
- "h": 399
- }
- },
- "id_str": "505868690252779521",
- "expanded_url": "http://twitter.com/8CBR8/status/505868690588303360/photo/1",
- "type": "photo",
- "display_url": "pic.twitter.com/FzTyFnt9xH",
- "url": "http://t.co/FzTyFnt9xH",
- "media_url_https": "https://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg"
- }
- ],
- "symbols": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "POTENZA_SUPERGT",
+ "id": 359324738,
+ "id_str": "359324738",
"indices": [
3,
19
],
- "id": 359324738,
- "id_str": "359324738",
- "screen_name": "POTENZA_SUPERGT",
"name": "POTENZA_SUPERGT"
},
{
+ "screen_name": "8CBR8",
+ "id": 333344408,
+ "id_str": "333344408",
"indices": [
33,
39
],
- "id": 333344408,
- "id_str": "333344408",
- "screen_name": "8CBR8",
"name": "CBR Rider #17 KEIHIN"
},
{
+ "screen_name": "POTENZA_SUPERGT",
+ "id": 359324738,
+ "id_str": "359324738",
"indices": [
41,
57
],
- "id": 359324738,
- "id_str": "359324738",
- "screen_name": "POTENZA_SUPERGT",
"name": "POTENZA_SUPERGT"
}
],
- "hashtags": []
+ "media": [
+ {
+ "display_url": "pic.twitter.com/FzTyFnt9xH",
+ "media_url_https": "https://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg",
+ "expanded_url": "http://twitter.com/8CBR8/status/505868690588303360/photo/1",
+ "source_status_id": 505868690588303360,
+ "sizes": {
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ },
+ "small": {
+ "h": 226,
+ "w": 340,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 399,
+ "w": 600,
+ "resize": "fit"
+ },
+ "large": {
+ "h": 682,
+ "w": 1024,
+ "resize": "fit"
+ }
+ },
+ "media_url": "http://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg",
+ "indices": [
+ 96,
+ 118
+ ],
+ "id": 505868690252779521,
+ "source_status_id_str": "505868690588303360",
+ "id_str": "505868690252779521",
+ "type": "photo",
+ "url": "http://t.co/FzTyFnt9xH"
+ }
+ ],
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 7,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @POTENZA_SUPERGT: ありがとうございます!“@8CBR8: @POTENZA_SUPERGT 13時半ごろ一雨きそうですが、無事全車決勝レース完走出来ること祈ってます! http://t.co/FzTyFnt9xH”",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:10 +0000 2014",
- "in_reply_to_user_id": null,
+ "source": "jigtwi",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/444312241395863552/FKl40ebQ_normal.jpeg",
+ "name": "narur",
+ "friends_count": 237,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Wed Dec 19 01:14:41 +0000 2012",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/444312241395863552/FKl40ebQ_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "1021030416",
+ "listed_count": 2,
+ "location": "晴れの国なのに何故か開幕戦では雨や雪や冰や霰が降る✨",
+ "screen_name": "narur2",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "F1.GP2.Superformula.SuperGT.F3...\nスーパーGTが大好き♡車が好き!新幹線も好き!飛行機も好き!こっそり別アカです(๑´ㅂ`๑)♡*.+゜",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/462180217574789121/1Jf6m_2L.jpeg",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": true,
+ "statuses_count": 55417,
+ "followers_count": 257,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "lang": "ja",
+ "following": false,
+ "default_profile": false,
+ "is_translator": false,
+ "profile_link_color": "0084B4",
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/462180217574789121/1Jf6m_2L.jpeg",
+ "id": 1021030416,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 547,
+ "url": null
+ },
+ "in_reply_to_status_id": null,
+ "retweet_count": 7,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874902247677954,
+ "retweeted": false,
+ "id_str": "505874902247677954",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874901689851904,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:09 +0000 2014",
+ "source": "ここだけの本音★男子編",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2762136439,
- "followers_count": 101,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "思ってるけど言えない!でもホントは言いたいこと、実はいっぱいあるんです! \r\nそんな男子の本音を、つぶやきます。 \r\nその気持わかるって人は RT & フォローお願いします♪",
- "id_str": "2762136439",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/503500282840354816/CEv8UMay_normal.png",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503500282840354816/CEv8UMay_normal.png",
"name": "ここだけの本音★男子編",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 985,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 24 11:11:30 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503500282840354816/CEv8UMay_normal.png",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2762136439/1408878822",
- "protected": false,
- "statuses_count": 209,
- "friends_count": 985,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2762136439",
+ "listed_count": 0,
+ "location": "",
"screen_name": "danshi_honne1",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "思ってるけど言えない!でもホントは言いたいこと、実はいっぱいあるんです! \r\nそんな男子の本音を、つぶやきます。 \r\nその気持わかるって人は RT & フォローお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503500282840354816/CEv8UMay_normal.png",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 209,
+ "followers_count": 101,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2762136439/1408878822",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2762136439,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874901689851904",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "ここだけの本音★男子編",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:09 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874901689851904,
+ "retweeted": false,
+ "id_str": "505874901689851904",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871779949051904,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [
+ {
+ "display_url": "pic.twitter.com/SXoYWH98as",
+ "url": "http://t.co/SXoYWH98as",
+ "expanded_url": "http://twitter.com/UARROW_Y/status/505871779949051904/photo/1",
+ "indices": [
+ 15,
+ 37
+ ]
+ }
+ ],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "ようかい体操第一を踊る国見英 http://t.co/SXoYWH98as",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:45 +0000 2014",
+ "source": "Twitter for Android",
+ "lang": "ja",
+ "favorite_count": 54,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1261662588,
- "followers_count": 265,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "HQ!! 成人済腐女子。日常ツイート多いです。赤葦京治夢豚クソツイ含みます注意。フォローをお考えの際はプロフご一読お願い致します。FRBお気軽に",
- "id_str": "1261662588",
- "default_profile_image": false,
- "location": "つくり出そう国影の波 広げよう国影の輪",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png",
- "listed_count": 12,
"entities": {
+ "description": {
+ "urls": []
+ },
"url": {
"urls": [
{
+ "display_url": "twpf.jp/UARROW_Y",
+ "url": "http://t.co/LFX2XOzb0l",
+ "expanded_url": "http://twpf.jp/UARROW_Y",
"indices": [
0,
22
- ],
- "display_url": "twpf.jp/UARROW_Y",
- "url": "http://t.co/LFX2XOzb0l",
- "expanded_url": "http://twpf.jp/UARROW_Y"
+ ]
}
]
- },
- "description": {
- "urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png",
"name": "ゆう矢",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 124,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Tue Mar 12 10:42:17 +0000 2013",
- "is_translation_enabled": false,
- "geo_enabled": true,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/1261662588/1408618604",
- "protected": false,
- "statuses_count": 55946,
- "friends_count": 124,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": "http://t.co/LFX2XOzb0l",
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png",
+ "geo_enabled": true,
+ "id_str": "1261662588",
+ "listed_count": 12,
+ "location": "つくり出そう国影の波 広げよう国影の輪",
"screen_name": "UARROW_Y",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "HQ!! 成人済腐女子。日常ツイート多いです。赤葦京治夢豚クソツイ含みます注意。フォローをお考えの際はプロフご一読お願い致します。FRBお気軽に",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 55946,
+ "followers_count": 265,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1261662588/1408618604",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 1261662588,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 6762,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 54,
- "id_str": "505871779949051904",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "ようかい体操第一を踊る国見英 http://t.co/SXoYWH98as",
- "lang": "ja",
- "source": "Twitter for Android",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [
- {
- "indices": [
- 15,
- 37
- ],
- "display_url": "pic.twitter.com/SXoYWH98as",
- "url": "http://t.co/SXoYWH98as",
- "expanded_url": "http://twitter.com/UARROW_Y/status/505871779949051904/photo/1"
- }
- ],
- "user_mentions": [],
- "hashtags": []
+ "url": "http://t.co/LFX2XOzb0l"
},
- "retweet_count": 29,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:45 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 29,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871779949051904,
+ "retweeted": false,
+ "id_str": "505871779949051904",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874900939046912,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "UARROW_Y",
+ "id": 1261662588,
+ "id_str": "1261662588",
+ "indices": [
+ 3,
+ 12
+ ],
+ "name": "ゆう矢"
+ }
+ ],
+ "urls": [
+ {
+ "display_url": "pic.twitter.com/SXoYWH98as",
+ "url": "http://t.co/SXoYWH98as",
+ "expanded_url": "http://twitter.com/UARROW_Y/status/505871779949051904/photo/1",
+ "indices": [
+ 29,
+ 51
+ ]
+ }
+ ],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @UARROW_Y: ようかい体操第一を踊る国見英 http://t.co/SXoYWH98as",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:09 +0000 2014",
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2454426158,
- "followers_count": 1274,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "銀魂/黒バス/進撃/ハイキュー/BLEACH/うたプリ/鈴木達央さん/神谷浩史さん 気軽にフォローしてください(^∇^)✨",
- "id_str": "2454426158",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/457788684146716672/KCOy0S75_normal.jpeg",
- "listed_count": 17,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/457788684146716672/KCOy0S75_normal.jpeg",
"name": "ぴかりん",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1320,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Apr 20 07:48:53 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/457788684146716672/KCOy0S75_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2454426158/1409371302",
- "protected": false,
- "statuses_count": 5868,
- "friends_count": 1320,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2454426158",
+ "listed_count": 17,
+ "location": "",
"screen_name": "gncnToktTtksg",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "銀魂/黒バス/進撃/ハイキュー/BLEACH/うたプリ/鈴木達央さん/神谷浩史さん 気軽にフォローしてください(^∇^)✨",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/457788684146716672/KCOy0S75_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 5868,
+ "followers_count": 1274,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2454426158/1409371302",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2454426158,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 2314,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 29,
+ "in_reply_to_status_id_str": null,
+ "id": 505874900939046912,
+ "retweeted": false,
"id_str": "505874900939046912",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "in_reply_to_screen_name": null
+ },
+ {
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
},
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "RT @UARROW_Y: ようかい体操第一を踊る国見英 http://t.co/SXoYWH98as",
- "lang": "ja",
- "source": "Twitter for iPhone",
"truncated": false,
- "entities": {
- "symbols": [],
- "urls": [
- {
- "indices": [
- 29,
- 51
- ],
- "display_url": "pic.twitter.com/SXoYWH98as",
- "url": "http://t.co/SXoYWH98as",
- "expanded_url": "http://twitter.com/UARROW_Y/status/505871779949051904/photo/1"
- }
- ],
- "user_mentions": [
- {
- "indices": [
- 3,
- 12
- ],
- "id": 1261662588,
- "id_str": "1261662588",
- "screen_name": "UARROW_Y",
- "name": "ゆう矢"
- }
- ],
- "hashtags": []
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "今日は一高と三桜(・θ・)\n光梨ちゃんに会えないかな〜",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
},
- "retweet_count": 29,
- "in_reply_to_status_id": null,
"coordinates": null,
- "place": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:09 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874900561580032,
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1366375976,
- "followers_count": 270,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "さんおう 男バスマネ2ねん(^ω^)",
- "id_str": "1366375976",
- "default_profile_image": false,
- "location": "",
- "time_zone": "Irkutsk",
- "profile_image_url": "http://pbs.twimg.com/profile_images/505354401448349696/nxVFEQQ4_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/505354401448349696/nxVFEQQ4_normal.jpeg",
"name": "ゆいの",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 260,
+ "time_zone": "Irkutsk",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Sat Apr 20 07:02:08 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/505354401448349696/nxVFEQQ4_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/1366375976/1399989379",
- "protected": false,
- "statuses_count": 5202,
- "friends_count": 260,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "1366375976",
+ "listed_count": 0,
+ "location": "",
"screen_name": "yuino1006",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "さんおう 男バスマネ2ねん(^ω^)",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/505354401448349696/nxVFEQQ4_normal.jpeg",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 5202,
+ "followers_count": 270,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1366375976/1399989379",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 1366375976,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 1384,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874900561580032",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "今日は一高と三桜(・θ・)\n光梨ちゃんに会えないかな〜",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 0,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:09 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874900561580032,
+ "retweeted": false,
+ "id_str": "505874900561580032",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874899324248064,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:09 +0000 2014",
+ "source": "共感★絶対あるあるww",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2704420069,
- "followers_count": 857,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "みんなにもわかってもらえる、あるあるを見つけたい。\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
- "id_str": "2704420069",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/495960812670836737/1LqkoyvU_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/495960812670836737/1LqkoyvU_normal.jpeg",
"name": "共感★絶対あるあるww",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1873,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 03 15:50:40 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/495960812670836737/1LqkoyvU_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2704420069/1407081298",
- "protected": false,
- "statuses_count": 682,
- "friends_count": 1873,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2704420069",
+ "listed_count": 0,
+ "location": "",
"screen_name": "kyoukan_aru",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "みんなにもわかってもらえる、あるあるを見つけたい。\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/495960812670836737/1LqkoyvU_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 682,
+ "followers_count": 857,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2704420069/1407081298",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2704420069,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874899324248064",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "共感★絶対あるあるww",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:09 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874899324248064,
+ "retweeted": false,
+ "id_str": "505874899324248064",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 501685228427964417,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [
+ {
+ "display_url": "pref.niigata.lg.jp/kouhou/info.ht…",
+ "url": "http://t.co/9oH5cgpy1q",
+ "expanded_url": "http://www.pref.niigata.lg.jp/kouhou/info.html",
+ "indices": [
+ 111,
+ 133
+ ]
+ }
+ ],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "泉田新潟県知事は、東電の申請書提出を容認させられただけで、再稼働に必要な「同意」はまだ与えていません。今まで柏崎刈羽の再稼働を抑え続けてきた知事に、もう一踏ん張りをお願いする意見を送って下さい。全国の皆様、お願いします!\nhttp://t.co/9oH5cgpy1q",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
+ "created_at": "Tue Aug 19 11:00:53 +0000 2014",
+ "source": "twittbot.net",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1104771276,
- "followers_count": 2977,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "アッサム山中の趣味用アカ。当分の間、選挙啓発用としても使っていきます。このアカウントがアッサム山中本人のものである事は @assam_yamanaka のプロフでご確認下さい。\r\n公選法に係る表示\r\n庶民新党 #脱原発 http://t.co/96UqoCo0oU\r\nonestep.revival@gmail.com",
- "id_str": "1104771276",
- "default_profile_image": false,
- "location": "新潟県柏崎市",
- "time_zone": "Irkutsk",
- "profile_image_url": "http://pbs.twimg.com/profile_images/378800000067217575/e0a85b440429ff50430a41200327dcb8_normal.png",
- "listed_count": 64,
"entities": {
- "url": {
+ "description": {
"urls": [
{
+ "display_url": "blog.assam-house.net/datsu-genpatsu…",
+ "url": "http://t.co/96UqoCo0oU",
+ "expanded_url": "http://blog.assam-house.net/datsu-genpatsu/index.html",
"indices": [
- 0,
- 22
- ],
- "display_url": "assam-house.net",
- "url": "http://t.co/AEOCATaNZc",
- "expanded_url": "http://www.assam-house.net/"
+ 110,
+ 132
+ ]
}
]
},
- "description": {
+ "url": {
"urls": [
{
+ "display_url": "assam-house.net",
+ "url": "http://t.co/AEOCATaNZc",
+ "expanded_url": "http://www.assam-house.net/",
"indices": [
- 110,
- 132
- ],
- "display_url": "blog.assam-house.net/datsu-genpatsu…",
- "url": "http://t.co/96UqoCo0oU",
- "expanded_url": "http://blog.assam-house.net/datsu-genpatsu/index.html"
+ 0,
+ 22
+ ]
}
]
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/378800000067217575/e0a85b440429ff50430a41200327dcb8_normal.png",
"name": "アッサム山中(殺処分ゼロに一票)",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 3127,
+ "time_zone": "Irkutsk",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Sat Jan 19 22:10:13 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000067217575/e0a85b440429ff50430a41200327dcb8_normal.png",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/1104771276/1408948288",
- "protected": false,
- "statuses_count": 18021,
- "friends_count": 3127,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": "http://t.co/AEOCATaNZc",
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "1104771276",
+ "listed_count": 64,
+ "location": "新潟県柏崎市",
"screen_name": "assam_house",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "アッサム山中の趣味用アカ。当分の間、選挙啓発用としても使っていきます。このアカウントがアッサム山中本人のものである事は @assam_yamanaka のプロフでご確認下さい。\r\n公選法に係る表示\r\n庶民新党 #脱原発 http://t.co/96UqoCo0oU\r\nonestep.revival@gmail.com",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000067217575/e0a85b440429ff50430a41200327dcb8_normal.png",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 18021,
+ "followers_count": 2977,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1104771276/1408948288",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 1104771276,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 343,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "501685228427964417",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "泉田新潟県知事は、東電の申請書提出を容認させられただけで、再稼働に必要な「同意」はまだ与えていません。今まで柏崎刈羽の再稼働を抑え続けてきた知事に、もう一踏ん張りをお願いする意見を送って下さい。全国の皆様、お願いします!\nhttp://t.co/9oH5cgpy1q",
- "lang": "ja",
- "source": "twittbot.net",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [
- {
- "indices": [
- 111,
- 133
- ],
- "display_url": "pref.niigata.lg.jp/kouhou/info.ht…",
- "url": "http://t.co/9oH5cgpy1q",
- "expanded_url": "http://www.pref.niigata.lg.jp/kouhou/info.html"
- }
- ],
- "user_mentions": [],
- "hashtags": []
+ "url": "http://t.co/AEOCATaNZc"
},
- "retweet_count": 2,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Tue Aug 19 11:00:53 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 2,
"in_reply_to_status_id_str": null,
- "favorited": false
- },
- "id": 505874898493796352,
- "user": {
- "is_translator": false,
- "id": 960765968,
- "followers_count": 3212,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "動物関連のアカウントです。サブアカウント@sachi_dears (さち ❷) もあります。『心あるものは皆、愛し愛されるために生まれてきた。そして愛情を感じながら生を全うするべきなんだ』",
- "id_str": "960765968",
- "default_profile_image": false,
- "location": "宮城県",
- "time_zone": "Irkutsk",
- "profile_image_url": "http://pbs.twimg.com/profile_images/3659653229/5b698df67f5d105400e9077f5ea50e91_normal.png",
- "listed_count": 91,
- "entities": {
- "description": {
- "urls": []
- }
- },
- "name": "さち",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": 32400,
- "created_at": "Tue Nov 20 16:30:53 +0000 2012",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "protected": false,
- "statuses_count": 146935,
- "friends_count": 3528,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "sachitaka_dears",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/3659653229/5b698df67f5d105400e9077f5ea50e91_normal.png",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 3180,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874898493796352",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "id": 501685228427964417,
+ "retweeted": false,
+ "id_str": "501685228427964417",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "RT @assam_house: 泉田新潟県知事は、東電の申請書提出を容認させられただけで、再稼働に必要な「同意」はまだ与えていません。今まで柏崎刈羽の再稼働を抑え続けてきた知事に、もう一踏ん張りをお願いする意見を送って下さい。全国の皆様、お願いします!\nhttp://t.co…",
- "lang": "ja",
- "source": "jigtwi for Android",
- "truncated": false,
"entities": {
- "symbols": [],
- "urls": [
- {
- "indices": [
- 139,
- 140
- ],
- "display_url": "pref.niigata.lg.jp/kouhou/info.ht…",
- "url": "http://t.co/9oH5cgpy1q",
- "expanded_url": "http://www.pref.niigata.lg.jp/kouhou/info.html"
- }
- ],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "assam_house",
+ "id": 1104771276,
+ "id_str": "1104771276",
"indices": [
3,
15
],
- "id": 1104771276,
- "id_str": "1104771276",
- "screen_name": "assam_house",
"name": "アッサム山中(殺処分ゼロに一票)"
}
],
- "hashtags": []
+ "urls": [
+ {
+ "display_url": "pref.niigata.lg.jp/kouhou/info.ht…",
+ "url": "http://t.co/9oH5cgpy1q",
+ "expanded_url": "http://www.pref.niigata.lg.jp/kouhou/info.html",
+ "indices": [
+ 139,
+ 140
+ ]
+ }
+ ],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @assam_house: 泉田新潟県知事は、東電の申請書提出を容認させられただけで、再稼働に必要な「同意」はまだ与えていません。今まで柏崎刈羽の再稼働を抑え続けてきた知事に、もう一踏ん張りをお願いする意見を送って下さい。全国の皆様、お願いします!\nhttp://t.co…",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:09 +0000 2014",
+ "source": "jigtwi for Android",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/3659653229/5b698df67f5d105400e9077f5ea50e91_normal.png",
+ "name": "さち",
+ "friends_count": 3528,
+ "time_zone": "Irkutsk",
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Tue Nov 20 16:30:53 +0000 2012",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/3659653229/5b698df67f5d105400e9077f5ea50e91_normal.png",
+ "geo_enabled": false,
+ "id_str": "960765968",
+ "listed_count": 91,
+ "location": "宮城県",
+ "screen_name": "sachitaka_dears",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "動物関連のアカウントです。サブアカウント@sachi_dears (さち ❷) もあります。『心あるものは皆、愛し愛されるために生まれてきた。そして愛情を感じながら生を全うするべきなんだ』",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": 32400,
+ "profile_background_tile": false,
+ "statuses_count": 146935,
+ "followers_count": 3212,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "lang": "ja",
+ "following": false,
+ "default_profile": true,
+ "is_translator": false,
+ "profile_link_color": "0084B4",
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 960765968,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 3180,
+ "url": null
},
- "retweet_count": 2,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:09 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 2,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874898493796352,
+ "retweeted": false,
+ "id_str": "505874898493796352",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874898468630528,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:09 +0000 2014",
+ "source": "おしゃれ★ペアルック",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2708607692,
- "followers_count": 129,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "ラブラブ度がアップする、素敵なペアルックを見つけて紹介します♪ 気に入ったら RT & 相互フォローで みなさん、お願いします♪",
- "id_str": "2708607692",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/496554257676382208/Zgg0bmNu_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/496554257676382208/Zgg0bmNu_normal.jpeg",
"name": "おしゃれ★ペアルック",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1934,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 05 07:09:31 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/496554257676382208/Zgg0bmNu_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2708607692/1407222776",
- "protected": false,
- "statuses_count": 641,
- "friends_count": 1934,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2708607692",
+ "listed_count": 0,
+ "location": "",
"screen_name": "osyare_pea",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ラブラブ度がアップする、素敵なペアルックを見つけて紹介します♪ 気に入ったら RT & 相互フォローで みなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/496554257676382208/Zgg0bmNu_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 641,
+ "followers_count": 129,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2708607692/1407222776",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2708607692,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874898468630528",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "おしゃれ★ペアルック",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:09 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874898468630528,
+ "retweeted": false,
+ "id_str": "505874898468630528",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874897633951745,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:08 +0000 2014",
+ "source": "LOVE ♥ ラブライブ",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745389137,
- "followers_count": 251,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "とにかく「ラブライブが好きで~す♥」 \r\nラブライブファンには、たまらない内容ばかり集めています♪ \r\n気に入ったら RT & 相互フォローお願いします。",
- "id_str": "2745389137",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501757482448850944/x2uPpqRx_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501757482448850944/x2uPpqRx_normal.jpeg",
"name": "LOVE ♥ ラブライブ",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 969,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 15:45:40 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501757482448850944/x2uPpqRx_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745389137/1408463342",
- "protected": false,
- "statuses_count": 348,
- "friends_count": 969,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745389137",
+ "listed_count": 0,
+ "location": "",
"screen_name": "love_live55",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "とにかく「ラブライブが好きで~す♥」 \r\nラブライブファンには、たまらない内容ばかり集めています♪ \r\n気に入ったら RT & 相互フォローお願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501757482448850944/x2uPpqRx_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 348,
+ "followers_count": 251,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745389137/1408463342",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745389137,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874897633951745",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "LOVE ♥ ラブライブ",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:08 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874897633951745,
+ "retweeted": false,
+ "id_str": "505874897633951745",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
- "user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874896795086848,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:08 +0000 2014",
+ "source": "恋する♡ドレスシリーズ",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2726346560,
- "followers_count": 314,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "どれもこれも、見ているだけで欲しくなっちゃう♪ \r\n特別な日に着る素敵なドレスを見つけたいです。 \r\n着てみたいと思ったら RT & フォローお願いします。",
- "id_str": "2726346560",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/499199619465621504/fg7sVusT_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/499199619465621504/fg7sVusT_normal.jpeg",
"name": "恋する♡ドレスシリーズ",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1900,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 12 14:10:35 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/499199619465621504/fg7sVusT_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2726346560/1407853688",
- "protected": false,
- "statuses_count": 471,
- "friends_count": 1900,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2726346560",
+ "listed_count": 0,
+ "location": "",
"screen_name": "koisurudoress",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "どれもこれも、見ているだけで欲しくなっちゃう♪ \r\n特別な日に着る素敵なドレスを見つけたいです。 \r\n着てみたいと思ったら RT & フォローお願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/499199619465621504/fg7sVusT_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 471,
+ "followers_count": 314,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2726346560/1407853688",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2726346560,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874896795086848",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "恋する♡ドレスシリーズ",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:08 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874896795086848,
+ "retweeted": false,
+ "id_str": "505874896795086848",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874895964626944,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:08 +0000 2014",
+ "source": "胸キュン♥動物図鑑",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2759192574,
- "followers_count": 80,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "ふとした表情に思わずキュンとしてしまう♪ \r\nそんな愛しの動物たちの写真を見つけます。 \r\n気に入ったら RT & フォローを、お願いします。",
- "id_str": "2759192574",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/503211559552688128/Ej_bixna_normal.jpeg",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503211559552688128/Ej_bixna_normal.jpeg",
"name": "胸キュン♥動物図鑑",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 959,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sat Aug 23 15:47:36 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503211559552688128/Ej_bixna_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2759192574/1408809101",
- "protected": false,
- "statuses_count": 219,
- "friends_count": 959,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2759192574",
+ "listed_count": 1,
+ "location": "",
"screen_name": "doubutuzukan",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ふとした表情に思わずキュンとしてしまう♪ \r\nそんな愛しの動物たちの写真を見つけます。 \r\n気に入ったら RT & フォローを、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503211559552688128/Ej_bixna_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 219,
+ "followers_count": 80,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2759192574/1408809101",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2759192574,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874895964626944",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "胸キュン♥動物図鑑",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
- },
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:08 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874895964626944,
+ "retweeted": false,
+ "id_str": "505874895964626944",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874895079608320,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:08 +0000 2014",
+ "source": "ディズニー★パラダイス",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2719228561,
- "followers_count": 331,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "ディズニーのかわいい画像、ニュース情報、あるあるなどをお届けします♪\r\nディズニーファンは RT & フォローもお願いします♪",
- "id_str": "2719228561",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/498076922488696832/Ti2AEuOT_normal.png",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/498076922488696832/Ti2AEuOT_normal.png",
"name": "ディズニー★パラダイス",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1867,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sat Aug 09 12:01:32 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/498076922488696832/Ti2AEuOT_normal.png",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2719228561/1407585841",
- "protected": false,
- "statuses_count": 540,
- "friends_count": 1867,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2719228561",
+ "listed_count": 0,
+ "location": "",
"screen_name": "disney_para",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ディズニーのかわいい画像、ニュース情報、あるあるなどをお届けします♪\r\nディズニーファンは RT & フォローもお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/498076922488696832/Ti2AEuOT_normal.png",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 540,
+ "followers_count": 331,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2719228561/1407585841",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2719228561,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874895079608320",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "ディズニー★パラダイス",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:08 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874895079608320,
+ "retweeted": false,
+ "id_str": "505874895079608320",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874894135898112,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:08 +0000 2014",
+ "source": "生々しい風刺画",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2714772727,
- "followers_count": 298,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "深い意味が込められた「生々しい風刺画」を見つけます。\r\n考えさせられたら RT & 相互フォローでみなさん、お願いします",
- "id_str": "2714772727",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/497398363352875011/tS-5FPJB_normal.jpeg",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/497398363352875011/tS-5FPJB_normal.jpeg",
"name": "生々しい風刺画",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1902,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Thu Aug 07 15:04:45 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/497398363352875011/tS-5FPJB_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2714772727/1407424091",
- "protected": false,
- "statuses_count": 595,
- "friends_count": 1902,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2714772727",
+ "listed_count": 1,
+ "location": "",
"screen_name": "nama_fuushi",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "深い意味が込められた「生々しい風刺画」を見つけます。\r\n考えさせられたら RT & 相互フォローでみなさん、お願いします",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/497398363352875011/tS-5FPJB_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 595,
+ "followers_count": 298,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2714772727/1407424091",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2714772727,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874894135898112",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "生々しい風刺画",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:08 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874894135898112,
+ "retweeted": false,
+ "id_str": "505874894135898112",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874893347377152,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:07 +0000 2014",
+ "source": "嵐★大好きっ娘",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2721682579,
- "followers_count": 794,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "なんだかんだ言って、やっぱり嵐が好きなんです♪\r\nいろいろ集めたいので、嵐好きな人に見てほしいです。\r\n気に入ったら RT & 相互フォローお願いします。",
- "id_str": "2721682579",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/498465364733198336/RO6wupdc_normal.jpeg",
- "listed_count": 2,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/498465364733198336/RO6wupdc_normal.jpeg",
"name": "嵐★大好きっ娘",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1913,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 10 13:43:56 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/498465364733198336/RO6wupdc_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2721682579/1407678436",
- "protected": false,
- "statuses_count": 504,
- "friends_count": 1913,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2721682579",
+ "listed_count": 2,
+ "location": "",
"screen_name": "arashi_suki1",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "なんだかんだ言って、やっぱり嵐が好きなんです♪\r\nいろいろ集めたいので、嵐好きな人に見てほしいです。\r\n気に入ったら RT & 相互フォローお願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/498465364733198336/RO6wupdc_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 504,
+ "followers_count": 794,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2721682579/1407678436",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2721682579,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874893347377152",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "url": null
},
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "嵐★大好きっ娘",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
- },
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:07 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874893347377152,
+ "retweeted": false,
+ "id_str": "505874893347377152",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505655792733650944,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "テレビで「成人男性のカロリー摂取量は1900kcal」とか言ってて、それはいままさに私がダイエットのために必死でキープしようとしている量で、「それが普通なら人はいつ天一やココイチに行って大盛りを食えばいいんだ!」と思った。",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sat Aug 30 09:58:30 +0000 2014",
+ "source": "Janetter",
+ "lang": "ja",
+ "favorite_count": 109,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 126573583,
- "followers_count": 110756,
- "profile_sidebar_fill_color": "E3E2DE",
- "description": "漫画家。週刊少年サンデーで『絶対可憐チルドレン』連載中。TVアニメ『THE UNLIMITED 兵部京介』公式サイト>http://t.co/jVqBoBEc",
- "id_str": "126573583",
- "default_profile_image": false,
- "location": "BABEL(超能力支援研究局)",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/504597210772688896/Uvt4jgf5_normal.png",
- "listed_count": 8159,
"entities": {
- "url": {
+ "description": {
"urls": [
{
+ "display_url": "unlimited-zc.jp/index.html",
+ "url": "http://t.co/jVqBoBEc",
+ "expanded_url": "http://unlimited-zc.jp/index.html",
"indices": [
- 0,
- 22
- ],
- "display_url": "cnanews.asablo.jp/blog/",
- "url": "http://t.co/K3Oi83wM3w",
- "expanded_url": "http://cnanews.asablo.jp/blog/"
+ 59,
+ 79
+ ]
}
]
},
- "description": {
+ "url": {
"urls": [
{
+ "display_url": "cnanews.asablo.jp/blog/",
+ "url": "http://t.co/K3Oi83wM3w",
+ "expanded_url": "http://cnanews.asablo.jp/blog/",
"indices": [
- 59,
- 79
- ],
- "display_url": "unlimited-zc.jp/index.html",
- "url": "http://t.co/jVqBoBEc",
- "expanded_url": "http://unlimited-zc.jp/index.html"
+ 0,
+ 22
+ ]
}
]
}
},
+ "protected": false,
+ "profile_background_color": "EDECE9",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/504597210772688896/Uvt4jgf5_normal.png",
"name": "椎名高志",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif",
+ "friends_count": 61,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Fri Mar 26 08:54:51 +0000 2010",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/504597210772688896/Uvt4jgf5_normal.png",
"geo_enabled": false,
- "protected": false,
- "statuses_count": 27364,
- "friends_count": 61,
- "profile_link_color": "088253",
- "profile_background_color": "EDECE9",
- "notifications": false,
- "url": "http://t.co/K3Oi83wM3w",
- "profile_sidebar_border_color": "D3D2CF",
- "lang": "ja",
+ "id_str": "126573583",
+ "listed_count": 8159,
+ "location": "BABEL(超能力支援研究局)",
"screen_name": "Takashi_Shiina",
- "default_profile": false,
- "profile_use_background_image": false,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "漫画家。週刊少年サンデーで『絶対可憐チルドレン』連載中。TVアニメ『THE UNLIMITED 兵部京介』公式サイト>http://t.co/jVqBoBEc",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif",
"profile_text_color": "634047",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/504597210772688896/Uvt4jgf5_normal.png",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 27364,
+ "followers_count": 110756,
+ "profile_use_background_image": false,
+ "default_profile_image": false,
+ "lang": "ja",
+ "following": false,
+ "default_profile": false,
+ "is_translator": false,
+ "profile_link_color": "088253",
+ "profile_sidebar_border_color": "D3D2CF",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif",
- "follow_request_sent": false,
+ "id": 126573583,
+ "profile_sidebar_fill_color": "E3E2DE",
+ "verified": false,
"favourites_count": 25,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 109,
- "id_str": "505655792733650944",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "テレビで「成人男性のカロリー摂取量は1900kcal」とか言ってて、それはいままさに私がダイエットのために必死でキープしようとしている量で、「それが普通なら人はいつ天一やココイチに行って大盛りを食えばいいんだ!」と思った。",
- "lang": "ja",
- "source": "Janetter",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": "http://t.co/K3Oi83wM3w"
},
- "retweet_count": 221,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sat Aug 30 09:58:30 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 221,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505655792733650944,
+ "retweeted": false,
+ "id_str": "505655792733650944",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874893154426881,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "Takashi_Shiina",
+ "id": 126573583,
+ "id_str": "126573583",
+ "indices": [
+ 3,
+ 18
+ ],
+ "name": "椎名高志"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @Takashi_Shiina: テレビで「成人男性のカロリー摂取量は1900kcal」とか言ってて、それはいままさに私がダイエットのために必死でキープしようとしている量で、「それが普通なら人はいつ天一やココイチに行って大盛りを食えばいいんだ!」と思った。",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:07 +0000 2014",
+ "source": "twicca",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 353516742,
- "followers_count": 479,
- "profile_sidebar_fill_color": "95E8EC",
- "description": "ROMって楽しんでいる部分もあり無言フォロー多めですすみません…。ツイート数多め・あらぶり多めなのでフォロー非推奨です。最近は早兵・兵部受け中心ですがBLNLなんでも好きです。地雷少ないため雑多に呟きます。腐・R18・ネタバレ有るのでご注意。他好きなジャンルはプロフ参照願います。 主催→@chounou_antholo",
- "id_str": "353516742",
- "default_profile_image": false,
- "location": "こたつ",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/484347196523835393/iHaYxm-2_normal.png",
- "listed_count": 43,
"entities": {
+ "description": {
+ "urls": []
+ },
"url": {
"urls": [
{
+ "display_url": "twpf.jp/oshin_koko",
+ "url": "http://t.co/mM1dG54NiO",
+ "expanded_url": "http://twpf.jp/oshin_koko",
"indices": [
0,
22
- ],
- "display_url": "twpf.jp/oshin_koko",
- "url": "http://t.co/mM1dG54NiO",
- "expanded_url": "http://twpf.jp/oshin_koko"
+ ]
}
]
- },
- "description": {
- "urls": []
}
},
+ "protected": false,
+ "profile_background_color": "000000",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/484347196523835393/iHaYxm-2_normal.png",
"name": "おしんこー@土曜西え41a",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/799871497/01583a031f83a45eba881c8acde729ee.jpeg",
+ "friends_count": 510,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Fri Aug 12 05:53:13 +0000 2011",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/484347196523835393/iHaYxm-2_normal.png",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/353516742/1369039651",
- "protected": false,
- "statuses_count": 104086,
- "friends_count": 510,
- "profile_link_color": "FF96B0",
- "profile_background_color": "000000",
- "notifications": false,
- "url": "http://t.co/mM1dG54NiO",
- "profile_sidebar_border_color": "FFFFFF",
- "lang": "ja",
+ "id_str": "353516742",
+ "listed_count": 43,
+ "location": "こたつ",
"screen_name": "oshin_koko",
- "default_profile": false,
- "profile_use_background_image": false,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ROMって楽しんでいる部分もあり無言フォロー多めですすみません…。ツイート数多め・あらぶり多めなのでフォロー非推奨です。最近は早兵・兵部受け中心ですがBLNLなんでも好きです。地雷少ないため雑多に呟きます。腐・R18・ネタバレ有るのでご注意。他好きなジャンルはプロフ参照願います。 主催→@chounou_antholo",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/799871497/01583a031f83a45eba881c8acde729ee.jpeg",
"profile_text_color": "3C3940",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/484347196523835393/iHaYxm-2_normal.png",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 104086,
+ "followers_count": 479,
+ "profile_use_background_image": false,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "FFFFFF",
+ "profile_link_color": "FF96B0",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/353516742/1369039651",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/799871497/01583a031f83a45eba881c8acde729ee.jpeg",
- "follow_request_sent": false,
+ "id": 353516742,
+ "profile_sidebar_fill_color": "95E8EC",
+ "verified": false,
"favourites_count": 3059,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874893154426881",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @Takashi_Shiina: テレビで「成人男性のカロリー摂取量は1900kcal」とか言ってて、それはいままさに私がダイエットのために必死でキープしようとしている量で、「それが普通なら人はいつ天一やココイチに行って大盛りを食えばいいんだ!」と思った。",
- "lang": "ja",
- "source": "twicca",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 18
- ],
- "id": 126573583,
- "id_str": "126573583",
- "screen_name": "Takashi_Shiina",
- "name": "椎名高志"
- }
- ],
- "hashtags": []
+ "url": "http://t.co/mM1dG54NiO"
},
- "retweet_count": 221,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:07 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 221,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874893154426881,
+ "retweeted": false,
+ "id_str": "505874893154426881",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
- },
- "id": 505874892567244801,
- "user": {
- "is_translator": false,
- "id": 2762581922,
- "followers_count": 37,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "普通の人には思いつかない、ちょっと変態チックな 笑える下ネタ雑学をお届けします。 \r\nおもしろかったら RT & フォローお願いします♪",
- "id_str": "2762581922",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/503545991950114816/K9yQbh1Q_normal.jpeg",
- "listed_count": 0,
- "entities": {
- "description": {
- "urls": []
- }
- },
- "name": "下ネタ&笑変態雑学",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Sun Aug 24 14:13:20 +0000 2014",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2762581922/1408889893",
- "protected": false,
- "statuses_count": 212,
- "friends_count": 990,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "shimo_hentai",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503545991950114816/K9yQbh1Q_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874892567244801",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "下ネタ&笑変態雑学",
- "truncated": false,
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
"indices": [
3,
19
],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
"name": "幸せの☆お守り"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:07 +0000 2014",
+ "source": "下ネタ&笑変態雑学",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503545991950114816/K9yQbh1Q_normal.jpeg",
+ "name": "下ネタ&笑変態雑学",
+ "friends_count": 990,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Sun Aug 24 14:13:20 +0000 2014",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503545991950114816/K9yQbh1Q_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "2762581922",
+ "listed_count": 0,
+ "location": "",
+ "screen_name": "shimo_hentai",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "普通の人には思いつかない、ちょっと変態チックな 笑える下ネタ雑学をお届けします。 \r\nおもしろかったら RT & フォローお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 212,
+ "followers_count": 37,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2762581922/1408889893",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2762581922,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:07 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874892567244801,
+ "retweeted": false,
+ "id_str": "505874892567244801",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874891778703360,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:07 +0000 2014",
+ "source": "超簡単★初心者英語",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2744544025,
- "followers_count": 147,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "すぐに使えるフレーズや簡単な会話を紹介します。 \r\n少しづつ練習して、どんどん使ってみよう☆ \r\n使ってみたいと思ったら RT & フォローお願いします♪",
- "id_str": "2744544025",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501676136321929216/4MLpyHe3_normal.jpeg",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501676136321929216/4MLpyHe3_normal.jpeg",
"name": "超簡単★初心者英語",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 970,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 10:11:48 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501676136321929216/4MLpyHe3_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744544025/1408443928",
- "protected": false,
- "statuses_count": 345,
- "friends_count": 970,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2744544025",
+ "listed_count": 1,
+ "location": "",
"screen_name": "kantaneigo1",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "すぐに使えるフレーズや簡単な会話を紹介します。 \r\n少しづつ練習して、どんどん使ってみよう☆ \r\n使ってみたいと思ったら RT & フォローお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501676136321929216/4MLpyHe3_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 345,
+ "followers_count": 147,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744544025/1408443928",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2744544025,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874891778703360",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "url": null
},
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "超簡単★初心者英語",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
- },
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:07 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874891778703360,
+ "retweeted": false,
+ "id_str": "505874891778703360",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874891032121344,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:07 +0000 2014",
+ "source": "現代のハンドサイン",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2762816814,
- "followers_count": 95,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "イザという時や、困った時に、必ず役に立つハンドサインのオンパレードです♪ \r\n使ってみたくなったら RT & フォローお願いします♪",
- "id_str": "2762816814",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/503566188253687809/7wtdp1AC_normal.png",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503566188253687809/7wtdp1AC_normal.png",
"name": "現代のハンドサイン",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 996,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 24 15:33:58 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503566188253687809/7wtdp1AC_normal.png",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2762816814/1408894540",
- "protected": false,
- "statuses_count": 210,
- "friends_count": 996,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2762816814",
+ "listed_count": 0,
+ "location": "",
"screen_name": "ima_handsign",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "イザという時や、困った時に、必ず役に立つハンドサインのオンパレードです♪ \r\n使ってみたくなったら RT & フォローお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503566188253687809/7wtdp1AC_normal.png",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 210,
+ "followers_count": 95,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2762816814/1408894540",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2762816814,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874891032121344",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "現代のハンドサイン",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:07 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874891032121344,
+ "retweeted": false,
+ "id_str": "505874891032121344",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874890247782401,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:07 +0000 2014",
+ "source": "今日からアナタもイイ女♪",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2714167411,
- "followers_count": 390,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "みんなが知りたい イイ女の秘密を見つけます♪ いいな~と思ってくれた人は RT & 相互フォローで みなさん、お願いします♪",
- "id_str": "2714167411",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/497314455655436288/dz7P3-fy_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/497314455655436288/dz7P3-fy_normal.jpeg",
"name": "今日からアナタもイイ女♪",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1425,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Thu Aug 07 09:27:59 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/497314455655436288/dz7P3-fy_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2714167411/1407404214",
- "protected": false,
- "statuses_count": 609,
- "friends_count": 1425,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2714167411",
+ "listed_count": 0,
+ "location": "",
"screen_name": "anata_iionna",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "みんなが知りたい イイ女の秘密を見つけます♪ いいな~と思ってくれた人は RT & 相互フォローで みなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/497314455655436288/dz7P3-fy_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 609,
+ "followers_count": 390,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2714167411/1407404214",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2714167411,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
+ "in_reply_to_status_id_str": null,
+ "id": 505874890247782401,
+ "retweeted": false,
"id_str": "505874890247782401",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "今日からアナタもイイ女♪",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [
+ {
+ "text": "RTした人にやる",
+ "indices": [
+ 119,
+ 128
+ ]
+ }
+ ],
"user_mentions": [
{
+ "screen_name": "kohecyan3",
+ "id": 2591363659,
+ "id_str": "2591363659",
"indices": [
- 3,
- 19
+ 0,
+ 10
],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
+ "name": "上野滉平"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": 2591363659,
"place": null,
+ "in_reply_to_user_id_str": "2591363659",
+ "text": "@kohecyan3 \n名前:上野滉平\n呼び方:うえの\n呼ばれ方:ずるかわ\n第一印象:過剰な俺イケメンですアピール\n今の印象:バーバリーの時計\n好きなところ:あの自信さ、笑いが絶えない\n一言:大学受かったの?応援してる〜(*^^*)!\n\n#RTした人にやる\nちょっとやってみる笑",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:07 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874890218434560,
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2613282517,
- "followers_count": 113,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "# I surprise even my self",
- "id_str": "2613282517",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/502436858135973888/PcUU0lov_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/502436858135973888/PcUU0lov_normal.jpeg",
"name": "K",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 185,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Wed Jul 09 09:39:13 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/502436858135973888/PcUU0lov_normal.jpeg",
"geo_enabled": false,
- "protected": false,
- "statuses_count": 242,
- "friends_count": 185,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2613282517",
+ "listed_count": 0,
+ "location": "",
"screen_name": "kawazurukenna",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "# I surprise even my self",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/502436858135973888/PcUU0lov_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 242,
+ "followers_count": 113,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "lang": "ja",
+ "following": false,
+ "default_profile": true,
+ "is_translator": false,
+ "profile_link_color": "0084B4",
+ "profile_sidebar_border_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2613282517,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 157,
- "verified": false
- },
- "in_reply_to_user_id_str": "2591363659",
- "in_reply_to_screen_name": "kohecyan3",
- "favorite_count": 0,
- "id_str": "505874890218434560",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "@kohecyan3 \n名前:上野滉平\n呼び方:うえの\n呼ばれ方:ずるかわ\n第一印象:過剰な俺イケメンですアピール\n今の印象:バーバリーの時計\n好きなところ:あの自信さ、笑いが絶えない\n一言:大学受かったの?応援してる〜(*^^*)!\n\n#RTした人にやる\nちょっとやってみる笑",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 0,
- 10
- ],
- "id": 2591363659,
- "id_str": "2591363659",
- "screen_name": "kohecyan3",
- "name": "上野滉平"
- }
- ],
- "hashtags": [
- {
- "indices": [
- 119,
- 128
- ],
- "text": "RTした人にやる"
- }
- ]
+ "url": null
},
- "retweet_count": 0,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:07 +0000 2014",
- "in_reply_to_user_id": 2591363659,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874890218434560,
+ "retweeted": false,
+ "id_str": "505874890218434560",
+ "geo": null,
+ "in_reply_to_screen_name": "kohecyan3"
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874889392156672,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:07 +0000 2014",
+ "source": "IQ★力だめし",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2709308887,
- "followers_count": 443,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "解けると楽しい気分になれる問題を見つけて紹介します♪面白かったら RT & 相互フォローで みなさん、お願いします♪",
- "id_str": "2709308887",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/496646485266558977/W_W--qV__normal.jpeg",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/496646485266558977/W_W--qV__normal.jpeg",
"name": "IQ★力だめし",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1851,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 05 13:14:30 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/496646485266558977/W_W--qV__normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2709308887/1407244754",
- "protected": false,
- "statuses_count": 664,
- "friends_count": 1851,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2709308887",
+ "listed_count": 1,
+ "location": "",
"screen_name": "iq_tameshi",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "解けると楽しい気分になれる問題を見つけて紹介します♪面白かったら RT & 相互フォローで みなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/496646485266558977/W_W--qV__normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874889392156672",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "IQ★力だめし",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "statuses_count": 664,
+ "followers_count": 443,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2709308887/1407244754",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2709308887,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:07 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874889392156672,
+ "retweeted": false,
+ "id_str": "505874889392156672",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
- "id": 505874888817532928,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "第一三軍から2個師団が北へ移動中らしい この調子では満州に陸軍兵力があふれかえる",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:06 +0000 2014",
+ "source": "如月克己",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1171299612,
- "followers_count": 65,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "GパングのA型K月克己中尉の非公式botです。 主に七巻と八巻が中心の台詞をつぶやきます。 4/18.台詞追加しました/現在試運転中/現在軽い挨拶だけTL反応。/追加したい台詞や何おかしい所がありましたらDMやリプライで/フォロー返しは手動です/",
- "id_str": "1171299612",
- "default_profile_image": false,
- "location": "満州",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/3242847112/0ce536444c94cbec607229022d43a27a_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/3242847112/0ce536444c94cbec607229022d43a27a_normal.jpeg",
"name": "如月 克己",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 63,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Feb 12 08:21:38 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/3242847112/0ce536444c94cbec607229022d43a27a_normal.jpeg",
"geo_enabled": false,
- "protected": false,
- "statuses_count": 27219,
- "friends_count": 63,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "1171299612",
+ "listed_count": 0,
+ "location": "満州",
"screen_name": "kisaragi_katumi",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "GパングのA型K月克己中尉の非公式botです。 主に七巻と八巻が中心の台詞をつぶやきます。 4/18.台詞追加しました/現在試運転中/現在軽い挨拶だけTL反応。/追加したい台詞や何おかしい所がありましたらDMやリプライで/フォロー返しは手動です/",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/3242847112/0ce536444c94cbec607229022d43a27a_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 27219,
+ "followers_count": 65,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "lang": "ja",
+ "following": false,
+ "default_profile": true,
+ "is_translator": false,
+ "profile_link_color": "0084B4",
+ "profile_sidebar_border_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 1171299612,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874888817532928",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "第一三軍から2個師団が北へ移動中らしい この調子では満州に陸軍兵力があふれかえる",
- "lang": "ja",
- "source": "如月克己",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 0,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874888817532928,
+ "retweeted": false,
+ "id_str": "505874888817532928",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
- },
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874888616181760,
- "user": {
- "is_translator": false,
- "id": 2766021865,
- "followers_count": 123,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "女子中高生に大人気ww いやされるイラストを紹介します。 \r\nみんなで RTして応援しよう~♪ \r\n「非公式アカウントです」",
- "id_str": "2766021865",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/503857235802333184/YS0sDN6q_normal.jpeg",
- "listed_count": 0,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:06 +0000 2014",
+ "source": "徳田有希★応援隊",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503857235802333184/YS0sDN6q_normal.jpeg",
"name": "徳田有希★応援隊",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 978,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Mon Aug 25 10:48:41 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503857235802333184/YS0sDN6q_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2766021865/1408963998",
- "protected": false,
- "statuses_count": 210,
- "friends_count": 978,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2766021865",
+ "listed_count": 0,
+ "location": "",
"screen_name": "tokuda_ouen1",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "女子中高生に大人気ww いやされるイラストを紹介します。 \r\nみんなで RTして応援しよう~♪ \r\n「非公式アカウントです」",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503857235802333184/YS0sDN6q_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 210,
+ "followers_count": 123,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2766021865/1408963998",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2766021865,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874888616181760",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "徳田有希★応援隊",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874888616181760,
+ "retweeted": false,
+ "id_str": "505874888616181760",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
- },
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874887802511361,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:06 +0000 2014",
+ "source": "腐女子の☆部屋",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2744683982,
- "followers_count": 241,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "腐女子にしかわからないネタや、あるあるを見つけていきます。 \r\n他には、BL~萌えキュン系まで、腐のための画像を集めています♪ \r\n同じ境遇の人には、わかってもらえると思うので、気軽に RT & フォローお願いします☆",
- "id_str": "2744683982",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501697365590306817/GLP_QH_b_normal.png",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501697365590306817/GLP_QH_b_normal.png",
"name": "腐女子の☆部屋",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 990,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 11:47:21 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501697365590306817/GLP_QH_b_normal.png",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744683982/1408448984",
- "protected": false,
- "statuses_count": 345,
- "friends_count": 990,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2744683982",
+ "listed_count": 0,
+ "location": "",
"screen_name": "fujyoshinoheya",
- "default_profile": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "腐女子にしかわからないネタや、あるあるを見つけていきます。 \r\n他には、BL~萌えキュン系まで、腐のための画像を集めています♪ \r\n同じ境遇の人には、わかってもらえると思うので、気軽に RT & フォローお願いします☆",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 345,
+ "followers_count": 241,
"profile_use_background_image": true,
- "profile_text_color": "333333",
+ "default_profile_image": false,
"following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501697365590306817/GLP_QH_b_normal.png",
- "profile_background_tile": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744683982/1408448984",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2744683982,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874887802511361",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "腐女子の☆部屋",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874887802511361,
+ "retweeted": false,
+ "id_str": "505874887802511361",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874887009767424,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:06 +0000 2014",
+ "source": "萌え芸術★ラテアート",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2763178045,
- "followers_count": 187,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "ここまで来ると、もはや芸術!! 見てるだけで楽しい♪ \r\nそんなラテアートを、とことん探します。 \r\nスゴイと思ったら RT & フォローお願いします♪",
- "id_str": "2763178045",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/503586151764992000/RC80it20_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503586151764992000/RC80it20_normal.jpeg",
"name": "萌え芸術★ラテアート",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 998,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 24 16:53:16 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503586151764992000/RC80it20_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2763178045/1408899447",
- "protected": false,
- "statuses_count": 210,
- "friends_count": 998,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2763178045",
+ "listed_count": 0,
+ "location": "",
"screen_name": "moe_rate",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ここまで来ると、もはや芸術!! 見てるだけで楽しい♪ \r\nそんなラテアートを、とことん探します。 \r\nスゴイと思ったら RT & フォローお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503586151764992000/RC80it20_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874887009767424",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "萌え芸術★ラテアート",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "statuses_count": 210,
+ "followers_count": 187,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2763178045/1408899447",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2763178045,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874887009767424,
+ "retweeted": false,
+ "id_str": "505874887009767424",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
- },
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874886225448960,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:06 +0000 2014",
+ "source": "全部★ジャニーズ図鑑",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2724158970,
- "followers_count": 738,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "ジャニーズのカッコイイ画像、おもしろエピソードなどを発信します。\r\n「非公式アカウントです」\r\nジャニーズ好きな人は、是非 RT & フォローお願いします。",
- "id_str": "2724158970",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/498859581057945600/ncMKwdvC_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/498859581057945600/ncMKwdvC_normal.jpeg",
"name": "全部★ジャニーズ図鑑",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1838,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Mon Aug 11 15:50:08 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/498859581057945600/ncMKwdvC_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2724158970/1407772462",
- "protected": false,
- "statuses_count": 556,
- "friends_count": 1838,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2724158970",
+ "listed_count": 0,
+ "location": "",
"screen_name": "zenbu_johnnys",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ジャニーズのカッコイイ画像、おもしろエピソードなどを発信します。\r\n「非公式アカウントです」\r\nジャニーズ好きな人は、是非 RT & フォローお願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/498859581057945600/ncMKwdvC_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 556,
+ "followers_count": 738,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2724158970/1407772462",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2724158970,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874886225448960",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "全部★ジャニーズ図鑑",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874886225448960,
+ "retweeted": false,
+ "id_str": "505874886225448960",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505721480261300224,
+ "entities": {
+ "hashtags": [
+ {
+ "text": "RTした人にやる",
+ "indices": [
+ 47,
+ 56
+ ]
+ }
+ ],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "呼び方:\n呼ばれ方:\n第一印象:\n今の印象:\n好きなところ:\n家族にするなら:\n最後に一言:\n#RTした人にやる\n\nお腹痛くて寝れないからやるww\nだれでもどうぞ〜😏🙌",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sat Aug 30 14:19:31 +0000 2014",
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 1,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 856045488,
- "followers_count": 267,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "\ もうすぐ18歳 “Only One”になる /",
- "id_str": "856045488",
- "default_profile_image": false,
- "location": "Fujino 65th ⇢ Sagaso 12A(LJK",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/496321592553525249/tuzX9ByR_normal.jpeg",
- "listed_count": 2,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/496321592553525249/tuzX9ByR_normal.jpeg",
"name": "なおぴす",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 259,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Mon Oct 01 08:36:23 +0000 2012",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/496321592553525249/tuzX9ByR_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/856045488/1407118111",
- "protected": false,
- "statuses_count": 1790,
- "friends_count": 259,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "856045488",
+ "listed_count": 2,
+ "location": "Fujino 65th ⇢ Sagaso 12A(LJK",
"screen_name": "naopisu_",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "\ もうすぐ18歳 “Only One”になる /",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/496321592553525249/tuzX9ByR_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 1790,
+ "followers_count": 267,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/856045488/1407118111",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 856045488,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 218,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 1,
- "id_str": "505721480261300224",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "呼び方:\n呼ばれ方:\n第一印象:\n今の印象:\n好きなところ:\n家族にするなら:\n最後に一言:\n#RTした人にやる\n\nお腹痛くて寝れないからやるww\nだれでもどうぞ〜😏🙌",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": [
- {
- "indices": [
- 47,
- 56
- ],
- "text": "RTした人にやる"
- }
- ]
+ "url": null
},
- "retweet_count": 23,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sat Aug 30 14:19:31 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 23,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505721480261300224,
+ "retweeted": false,
+ "id_str": "505721480261300224",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874885810200576,
+ "entities": {
+ "hashtags": [
+ {
+ "text": "RTした人にやる",
+ "indices": [
+ 61,
+ 70
+ ]
+ }
+ ],
+ "user_mentions": [
+ {
+ "screen_name": "naopisu_",
+ "id": 856045488,
+ "id_str": "856045488",
+ "indices": [
+ 3,
+ 12
+ ],
+ "name": "なおぴす"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @naopisu_: 呼び方:\n呼ばれ方:\n第一印象:\n今の印象:\n好きなところ:\n家族にするなら:\n最後に一言:\n#RTした人にやる\n\nお腹痛くて寝れないからやるww\nだれでもどうぞ〜😏🙌",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:06 +0000 2014",
+ "source": "Twitter for Android",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2347898072,
- "followers_count": 64,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "",
- "id_str": "2347898072",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/485603672118669314/73uh_xRS_normal.jpeg",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/485603672118669314/73uh_xRS_normal.jpeg",
"name": "にたにた",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 70,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Mon Feb 17 04:29:46 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/485603672118669314/73uh_xRS_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2347898072/1396957619",
- "protected": false,
- "statuses_count": 145,
- "friends_count": 70,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2347898072",
+ "listed_count": 1,
+ "location": "",
"screen_name": "syo6660129",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/485603672118669314/73uh_xRS_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 145,
+ "followers_count": 64,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2347898072/1396957619",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2347898072,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 58,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874885810200576",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @naopisu_: 呼び方:\n呼ばれ方:\n第一印象:\n今の印象:\n好きなところ:\n家族にするなら:\n最後に一言:\n#RTした人にやる\n\nお腹痛くて寝れないからやるww\nだれでもどうぞ〜😏🙌",
- "lang": "ja",
- "source": "Twitter for Android",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 12
- ],
- "id": 856045488,
- "id_str": "856045488",
- "screen_name": "naopisu_",
- "name": "なおぴす"
- }
- ],
- "hashtags": [
- {
- "indices": [
- 61,
- 70
- ],
- "text": "RTした人にやる"
- }
- ]
+ "url": null
},
- "retweet_count": 23,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 23,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874885810200576,
+ "retweeted": false,
+ "id_str": "505874885810200576",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "url": null
},
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
- },
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874885474656256,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:06 +0000 2014",
+ "source": "爆笑★LINE あるある",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2709561589,
- "followers_count": 496,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "思わず笑ってしまうLINEでのやりとりや、あるあるを見つけたいです♪面白かったら RT & 相互フォローで みなさん、お願いします♪",
- "id_str": "2709561589",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/496673793939492867/p1BN4YaW_normal.png",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/496673793939492867/p1BN4YaW_normal.png",
"name": "爆笑★LINE あるある",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1875,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 05 15:01:30 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/496673793939492867/p1BN4YaW_normal.png",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2709561589/1407251270",
- "protected": false,
- "statuses_count": 687,
- "friends_count": 1875,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2709561589",
+ "listed_count": 1,
+ "location": "",
"screen_name": "line_aru1",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "思わず笑ってしまうLINEでのやりとりや、あるあるを見つけたいです♪面白かったら RT & 相互フォローで みなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/496673793939492867/p1BN4YaW_normal.png",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 687,
+ "followers_count": 496,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2709561589/1407251270",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2709561589,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874885474656256",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "爆笑★LINE あるある",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874885474656256,
+ "retweeted": false,
+ "id_str": "505874885474656256",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874884627410944,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:05 +0000 2014",
+ "source": "全力★ミサワ的w発言",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2734455415,
- "followers_count": 144,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "ウザすぎて笑えるミサワ的名言や、おもしろミサワ画像を集めています。 \r\nミサワを知らない人でも、いきなりツボにハマっちゃう内容をお届けします。 \r\nウザいwと思ったら RT & 相互フォローお願いします♪",
- "id_str": "2734455415",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/500271070834749444/HvengMe5_normal.jpeg",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/500271070834749444/HvengMe5_normal.jpeg",
"name": "全力★ミサワ的w発言!!",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1915,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Fri Aug 15 13:20:04 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/500271070834749444/HvengMe5_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2734455415/1408108944",
- "protected": false,
- "statuses_count": 436,
- "friends_count": 1915,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2734455415",
+ "listed_count": 1,
+ "location": "",
"screen_name": "misawahatugen",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ウザすぎて笑えるミサワ的名言や、おもしろミサワ画像を集めています。 \r\nミサワを知らない人でも、いきなりツボにハマっちゃう内容をお届けします。 \r\nウザいwと思ったら RT & 相互フォローお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/500271070834749444/HvengMe5_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 436,
+ "followers_count": 144,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2734455415/1408108944",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2734455415,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874884627410944",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "全力★ミサワ的w発言",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:05 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874884627410944,
+ "retweeted": false,
+ "id_str": "505874884627410944",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
- },
- "id": 505874883809521664,
- "user": {
- "is_translator": false,
- "id": 2708183557,
- "followers_count": 286,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "みんな昔は若かったんですね。今からは想像もつかない、あの有名人を見つけます。\r\n面白かったら RT & 相互フォローで みなさん、お願いします♪",
- "id_str": "2708183557",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/496499121276985344/hC8RoebP_normal.jpeg",
- "listed_count": 0,
- "entities": {
- "description": {
- "urls": []
- }
- },
- "name": "お宝ww有名人卒アル特集",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Tue Aug 05 03:26:54 +0000 2014",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2708183557/1407318758",
- "protected": false,
- "statuses_count": 650,
- "friends_count": 1938,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "otakara_sotuaru",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/496499121276985344/hC8RoebP_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874883809521664",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "お宝ww有名人卒アル特集",
- "truncated": false,
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
"indices": [
3,
19
],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
"name": "幸せの☆お守り"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:05 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874883322970112,
+ "source": "お宝ww有名人卒アル特集",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1620730616,
- "followers_count": 109,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "THE SECOND/劇団EXILE/EXILE/二代目JSB ☞KENCHI.AKIRA.青柳翔.小森隼.石井杏奈☜ Big Love ♡ Respect ..... ✍ MATSU Origin✧ .た ち ば な '' い も '' け ん い ち ろ う さ んTEAM NACS 安田.戸次 Liebe !",
- "id_str": "1620730616",
- "default_profile_image": false,
- "location": "北の大地.95年組 ☞ 9/28.10/2(5).12/28",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/458760951060123648/Cocoxi-2_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
- "name": "ひーちゃん@橘芋健ぴ",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Thu Jul 25 16:09:29 +0000 2013",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/1620730616/1408681982",
"protected": false,
- "statuses_count": 9541,
- "friends_count": 148,
- "profile_link_color": "0084B4",
"profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/496499121276985344/hC8RoebP_normal.jpeg",
+ "name": "お宝ww有名人卒アル特集",
+ "friends_count": 1938,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Tue Aug 05 03:26:54 +0000 2014",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/496499121276985344/hC8RoebP_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "2708183557",
+ "listed_count": 0,
+ "location": "",
+ "screen_name": "otakara_sotuaru",
"notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "2nd_8hkr",
- "default_profile": true,
- "profile_use_background_image": true,
+ "follow_request_sent": false,
+ "description": "みんな昔は若かったんですね。今からは想像もつかない、あの有名人を見つけます。\r\n面白かったら RT & 相互フォローで みなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/458760951060123648/Cocoxi-2_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 650,
+ "followers_count": 286,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2708183557/1407318758",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 783,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874883322970112",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "id": 2708183557,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
},
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
+ "in_reply_to_status_id_str": null,
+ "id": 505874883809521664,
"retweeted": false,
- "contributors": null,
- "text": "レッドクリフのキャラのこと女装ってくそわろたwww朝一で面白かった( ˘ω゜)笑",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
+ "id_str": "505874883809521664",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "レッドクリフのキャラのこと女装ってくそわろたwww朝一で面白かった( ˘ω゜)笑",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:05 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874883067129857,
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2278053589,
- "followers_count": 5,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "Yahooオークションのデジカメカテゴリから商品を抽出するボットです。",
- "id_str": "2278053589",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/419927606146789376/vko-kd6Q_normal.jpeg",
- "listed_count": 0,
"entities": {
- "url": {
- "urls": [
- {
- "indices": [
- 0,
- 23
- ],
- "display_url": "github.com/AKB428/YahooAu…",
- "url": "https://t.co/3sB1NDnd0m",
- "expanded_url": "https://github.com/AKB428/YahooAuctionBot"
- }
- ]
- },
"description": {
"urls": []
}
},
- "name": "AuctionCamera",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Sun Jan 05 20:10:56 +0000 2014",
- "is_translation_enabled": false,
- "geo_enabled": false,
"protected": false,
- "statuses_count": 199546,
- "friends_count": 24,
- "profile_link_color": "0084B4",
"profile_background_color": "C0DEED",
- "notifications": false,
- "url": "https://t.co/3sB1NDnd0m",
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "AuctionCamera",
- "default_profile": true,
- "profile_use_background_image": true,
+ "profile_image_url": "http://pbs.twimg.com/profile_images/458760951060123648/Cocoxi-2_normal.jpeg",
+ "name": "ひーちゃん@橘芋健ぴ",
+ "friends_count": 148,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Thu Jul 25 16:09:29 +0000 2013",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/458760951060123648/Cocoxi-2_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "1620730616",
+ "listed_count": 0,
+ "location": "北の大地.95年組 ☞ 9/28.10/2(5).12/28",
+ "screen_name": "2nd_8hkr",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "THE SECOND/劇団EXILE/EXILE/二代目JSB ☞KENCHI.AKIRA.青柳翔.小森隼.石井杏奈☜ Big Love ♡ Respect ..... ✍ MATSU Origin✧ .た ち ば な '' い も '' け ん い ち ろ う さ んTEAM NACS 安田.戸次 Liebe !",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/419927606146789376/vko-kd6Q_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 9541,
+ "followers_count": 109,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1620730616/1408681982",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 1,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874883067129857",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "id": 1620730616,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 783,
+ "url": null
},
- "possibly_sensitive": false,
+ "in_reply_to_status_id": null,
+ "retweet_count": 0,
+ "in_reply_to_status_id_str": null,
+ "id": 505874883322970112,
"retweeted": false,
- "contributors": null,
- "text": "【状態良好】ペンタックス・デジタル一眼レフカメラ・K20D 入札数=38 現在価格=15000円 http://t.co/4WK1f6V2n6終了=2014年08月31日 20:47:53 #一眼レフ http://t.co/PcSaXzfHMW",
- "lang": "ja",
- "source": "YahooAuction Degicame",
- "truncated": false,
+ "id_str": "505874883322970112",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "urls": [
+ "hashtags": [
{
+ "text": "一眼レフ",
"indices": [
- 49,
- 71
- ],
- "display_url": "atq.ck.valuecommerce.com/servlet/atq/re…",
- "url": "http://t.co/4WK1f6V2n6",
- "expanded_url": "http://atq.ck.valuecommerce.com/servlet/atq/referral?sid=2219441&pid=877510753&vcptn=auct/p/RJH492.PLqoLQQx1Jy8U9LE-&vc_url=http://page8.auctions.yahoo.co.jp/jp/auction/h192024356"
+ 95,
+ 100
+ ]
}
],
+ "user_mentions": [],
"media": [
{
- "indices": [
- 101,
- 123
- ],
- "id": 505874882828046336,
- "media_url": "http://pbs.twimg.com/media/BwU6hpPCEAAxnpq.jpg",
+ "display_url": "pic.twitter.com/PcSaXzfHMW",
+ "media_url_https": "https://pbs.twimg.com/media/BwU6hpPCEAAxnpq.jpg",
+ "expanded_url": "http://twitter.com/AuctionCamera/status/505874883067129857/photo/1",
"sizes": {
"large": {
+ "h": 450,
"w": 600,
- "resize": "fit",
- "h": 450
- },
- "thumb": {
- "w": 150,
- "resize": "crop",
- "h": 150
+ "resize": "fit"
},
"small": {
+ "h": 255,
"w": 340,
- "resize": "fit",
- "h": 255
+ "resize": "fit"
},
"medium": {
+ "h": 450,
"w": 600,
- "resize": "fit",
- "h": 450
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
}
},
+ "media_url": "http://pbs.twimg.com/media/BwU6hpPCEAAxnpq.jpg",
+ "indices": [
+ 101,
+ 123
+ ],
+ "id": 505874882828046336,
"id_str": "505874882828046336",
- "expanded_url": "http://twitter.com/AuctionCamera/status/505874883067129857/photo/1",
"type": "photo",
- "display_url": "pic.twitter.com/PcSaXzfHMW",
- "url": "http://t.co/PcSaXzfHMW",
- "media_url_https": "https://pbs.twimg.com/media/BwU6hpPCEAAxnpq.jpg"
+ "url": "http://t.co/PcSaXzfHMW"
}
],
- "symbols": [],
- "user_mentions": [],
- "hashtags": [
+ "urls": [
{
+ "display_url": "atq.ck.valuecommerce.com/servlet/atq/re…",
+ "url": "http://t.co/4WK1f6V2n6",
+ "expanded_url": "http://atq.ck.valuecommerce.com/servlet/atq/referral?sid=2219441&pid=877510753&vcptn=auct/p/RJH492.PLqoLQQx1Jy8U9LE-&vc_url=http://page8.auctions.yahoo.co.jp/jp/auction/h192024356",
"indices": [
- 95,
- 100
- ],
- "text": "一眼レフ"
+ 49,
+ 71
+ ]
}
- ]
+ ],
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "【状態良好】ペンタックス・デジタル一眼レフカメラ・K20D 入札数=38 現在価格=15000円 http://t.co/4WK1f6V2n6終了=2014年08月31日 20:47:53 #一眼レフ http://t.co/PcSaXzfHMW",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:05 +0000 2014",
- "in_reply_to_user_id": null,
+ "source": "YahooAuction Degicame",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "github.com/AKB428/YahooAu…",
+ "url": "https://t.co/3sB1NDnd0m",
+ "expanded_url": "https://github.com/AKB428/YahooAuctionBot",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/419927606146789376/vko-kd6Q_normal.jpeg",
+ "name": "AuctionCamera",
+ "friends_count": 24,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Sun Jan 05 20:10:56 +0000 2014",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/419927606146789376/vko-kd6Q_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "2278053589",
+ "listed_count": 0,
+ "location": "",
+ "screen_name": "AuctionCamera",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "Yahooオークションのデジカメカテゴリから商品を抽出するボットです。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 199546,
+ "followers_count": 5,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "lang": "ja",
+ "following": false,
+ "default_profile": true,
+ "is_translator": false,
+ "profile_link_color": "0084B4",
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2278053589,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 1,
+ "url": "https://t.co/3sB1NDnd0m"
+ },
+ "in_reply_to_status_id": null,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874883067129857,
+ "retweeted": false,
+ "id_str": "505874883067129857",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874882995826689,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:05 +0000 2014",
+ "source": "ヤバすぎる!!ギネス世界記録",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2762405780,
- "followers_count": 36,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "世の中には、まだまだ知られていないスゴイ記録があるんです! \r\nそんなギネス世界記録を見つけます☆ \r\nどんどん友達にも教えてあげてくださいねww \r\nヤバイと思ったら RT & フォローを、お願いします♪",
- "id_str": "2762405780",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/503531782919045121/NiIC25wL_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503531782919045121/NiIC25wL_normal.jpeg",
"name": "ヤバすぎる!!ギネス世界記録",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 985,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 24 13:17:03 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503531782919045121/NiIC25wL_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2762405780/1408886328",
- "protected": false,
- "statuses_count": 210,
- "friends_count": 985,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2762405780",
+ "listed_count": 0,
+ "location": "",
"screen_name": "yabai_giness",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "世の中には、まだまだ知られていないスゴイ記録があるんです! \r\nそんなギネス世界記録を見つけます☆ \r\nどんどん友達にも教えてあげてくださいねww \r\nヤバイと思ったら RT & フォローを、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503531782919045121/NiIC25wL_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 210,
+ "followers_count": 36,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2762405780/1408886328",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2762405780,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
+ "in_reply_to_status_id_str": null,
+ "id": 505874882995826689,
+ "retweeted": false,
"id_str": "505874882995826689",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "ヤバすぎる!!ギネス世界記録",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
+ "hashtags": [],
+ "user_mentions": [],
"urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "symbols": []
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "すごく面白い夢見た。魔法科高校通ってて(別に一科二科の区別ない)クラスメイトにヨセアツメ面子や赤僕の拓也がいて、学校対抗合唱コンクールが開催されたり会場入りの際他校の妨害工作受けたり、拓也が連れてきてた実が人質に取られたりとにかくてんこ盛りだった楽しかった赤僕読みたい手元にない",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:05 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874882870009856,
+ "source": "Twitter for Android",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 597357105,
- "followers_count": 128,
- "profile_sidebar_fill_color": "95E8EC",
- "description": "成人腐女子",
- "id_str": "597357105",
- "default_profile_image": false,
- "location": "多摩動物公園",
- "time_zone": "Irkutsk",
- "profile_image_url": "http://pbs.twimg.com/profile_images/503553738569560065/D_JW2dCJ_normal.jpeg",
- "listed_count": 6,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "0099B9",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503553738569560065/D_JW2dCJ_normal.jpeg",
"name": "ふじよし",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif",
+ "friends_count": 126,
+ "time_zone": "Irkutsk",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Sat Jun 02 10:06:05 +0000 2012",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503553738569560065/D_JW2dCJ_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/597357105/1408864355",
- "protected": false,
- "statuses_count": 10517,
- "friends_count": 126,
- "profile_link_color": "0099B9",
- "profile_background_color": "0099B9",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "5ED4DC",
- "lang": "ja",
+ "id_str": "597357105",
+ "listed_count": 6,
+ "location": "多摩動物公園",
"screen_name": "fuji_mark",
- "default_profile": false,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "成人腐女子",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif",
"profile_text_color": "3C3940",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503553738569560065/D_JW2dCJ_normal.jpeg",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 10517,
+ "followers_count": 128,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "5ED4DC",
+ "profile_link_color": "0099B9",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/597357105/1408864355",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif",
- "follow_request_sent": false,
+ "id": 597357105,
+ "profile_sidebar_fill_color": "95E8EC",
+ "verified": false,
"favourites_count": 2842,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874882870009856",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "すごく面白い夢見た。魔法科高校通ってて(別に一科二科の区別ない)クラスメイトにヨセアツメ面子や赤僕の拓也がいて、学校対抗合唱コンクールが開催されたり会場入りの際他校の妨害工作受けたり、拓也が連れてきてた実が人質に取られたりとにかくてんこ盛りだった楽しかった赤僕読みたい手元にない",
- "lang": "ja",
- "source": "Twitter for Android",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 0,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:05 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874882870009856,
+ "retweeted": false,
+ "id_str": "505874882870009856",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505855649196953600,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "●継続試合(中京対崇徳)46回~ 9時~\n 〈ラジオ中継〉\n らじる★らじる→大阪放送局を選択→NHK-FM\n●決勝戦(三浦対中京or崇徳) 12時30分~\n 〈ラジオ中継〉\n らじる★らじる→大阪放送局を選択→NHK第一\n ※神奈川の方は普通のラジオのNHK-FMでも",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sat Aug 30 23:12:39 +0000 2014",
+ "source": "Twitter Web Client",
+ "lang": "ja",
+ "favorite_count": 2,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2761692762,
- "followers_count": 464,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "兵庫県で開催される「もう一つの甲子園」こと全国高校軟式野球選手権大会に南関東ブロックから出場する三浦学苑軟式野球部を応援する非公式アカウントです。",
- "id_str": "2761692762",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/504299474445811712/zsxJUmL0_normal.jpeg",
- "listed_count": 4,
"entities": {
+ "description": {
+ "urls": []
+ },
"url": {
"urls": [
{
+ "display_url": "miura.ed.jp/index.html",
+ "url": "http://t.co/Cn1tPTsBGY",
+ "expanded_url": "http://www.miura.ed.jp/index.html",
"indices": [
0,
22
- ],
- "display_url": "miura.ed.jp/index.html",
- "url": "http://t.co/Cn1tPTsBGY",
- "expanded_url": "http://www.miura.ed.jp/index.html"
+ ]
}
]
- },
- "description": {
- "urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/504299474445811712/zsxJUmL0_normal.jpeg",
"name": "三浦学苑軟式野球部応援団!",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 117,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 24 07:47:29 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/504299474445811712/zsxJUmL0_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2761692762/1409069337",
- "protected": false,
- "statuses_count": 553,
- "friends_count": 117,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": "http://t.co/Cn1tPTsBGY",
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2761692762",
+ "listed_count": 4,
+ "location": "",
"screen_name": "oen_yakyu",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "兵庫県で開催される「もう一つの甲子園」こと全国高校軟式野球選手権大会に南関東ブロックから出場する三浦学苑軟式野球部を応援する非公式アカウントです。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/504299474445811712/zsxJUmL0_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 553,
+ "followers_count": 464,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2761692762/1409069337",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2761692762,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 69,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 2,
- "id_str": "505855649196953600",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "●継続試合(中京対崇徳)46回~ 9時~\n 〈ラジオ中継〉\n らじる★らじる→大阪放送局を選択→NHK-FM\n●決勝戦(三浦対中京or崇徳) 12時30分~\n 〈ラジオ中継〉\n らじる★らじる→大阪放送局を選択→NHK第一\n ※神奈川の方は普通のラジオのNHK-FMでも",
- "lang": "ja",
- "source": "Twitter Web Client",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": "http://t.co/Cn1tPTsBGY"
},
- "retweet_count": 7,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sat Aug 30 23:12:39 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 7,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505855649196953600,
+ "retweeted": false,
+ "id_str": "505855649196953600",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874882228281345,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "oen_yakyu",
+ "id": 2761692762,
+ "id_str": "2761692762",
+ "indices": [
+ 3,
+ 13
+ ],
+ "name": "三浦学苑軟式野球部応援団!"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @oen_yakyu: ●継続試合(中京対崇徳)46回~ 9時~\n 〈ラジオ中継〉\n らじる★らじる→大阪放送局を選択→NHK-FM\n●決勝戦(三浦対中京or崇徳) 12時30分~\n 〈ラジオ中継〉\n らじる★らじる→大阪放送局を選択→NHK第一\n ※神奈川の方は普通のラ…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:05 +0000 2014",
+ "source": "twicca",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 18477566,
- "followers_count": 591,
- "profile_sidebar_fill_color": "EFEFEF",
- "description": "ヤー・チャイカ。紫宝勢の末席くらいでQMAやってます。\r\n9/13(土)「九州杯」今年も宜しくお願いします!キーワードは「そうだ、トップ、行こう。」\r\nmore → http://t.co/ezuHyjF4Qy \r\n【旅の予定】9/20-22 関西 → 9/23-28 北海道ぐるり",
- "id_str": "18477566",
- "default_profile_image": false,
- "location": "福岡市の端っこ",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/1556202861/chibi-Leon_normal.jpg",
- "listed_count": 93,
"entities": {
- "url": {
+ "description": {
"urls": [
{
+ "display_url": "twpf.jp/natit_yso",
+ "url": "http://t.co/ezuHyjF4Qy",
+ "expanded_url": "http://twpf.jp/natit_yso",
"indices": [
- 0,
- 22
- ],
- "display_url": "qma-kyushu.sakura.ne.jp",
- "url": "http://t.co/ll2yu78DGR",
- "expanded_url": "http://qma-kyushu.sakura.ne.jp/"
+ 83,
+ 105
+ ]
}
]
},
- "description": {
+ "url": {
"urls": [
{
+ "display_url": "qma-kyushu.sakura.ne.jp",
+ "url": "http://t.co/ll2yu78DGR",
+ "expanded_url": "http://qma-kyushu.sakura.ne.jp/",
"indices": [
- 83,
- 105
- ],
- "display_url": "twpf.jp/natit_yso",
- "url": "http://t.co/ezuHyjF4Qy",
- "expanded_url": "http://twpf.jp/natit_yso"
+ 0,
+ 22
+ ]
}
]
}
},
+ "protected": false,
+ "profile_background_color": "131516",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/1556202861/chibi-Leon_normal.jpg",
"name": "Natit(なち)@そうだ、トップ行こう",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
+ "friends_count": 548,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Tue Dec 30 14:11:44 +0000 2008",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1556202861/chibi-Leon_normal.jpg",
"geo_enabled": false,
- "protected": false,
- "statuses_count": 130145,
- "friends_count": 548,
- "profile_link_color": "009999",
- "profile_background_color": "131516",
- "notifications": false,
- "url": "http://t.co/ll2yu78DGR",
- "profile_sidebar_border_color": "EEEEEE",
- "lang": "ja",
+ "id_str": "18477566",
+ "listed_count": 93,
+ "location": "福岡市の端っこ",
"screen_name": "natit_yso",
- "default_profile": false,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ヤー・チャイカ。紫宝勢の末席くらいでQMAやってます。\r\n9/13(土)「九州杯」今年も宜しくお願いします!キーワードは「そうだ、トップ、行こう。」\r\nmore → http://t.co/ezuHyjF4Qy \r\n【旅の予定】9/20-22 関西 → 9/23-28 北海道ぐるり",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/1556202861/chibi-Leon_normal.jpg",
+ "utc_offset": 32400,
"profile_background_tile": true,
+ "statuses_count": 130145,
+ "followers_count": 591,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "lang": "ja",
+ "following": false,
+ "default_profile": false,
+ "is_translator": false,
+ "profile_link_color": "009999",
+ "profile_sidebar_border_color": "EEEEEE",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
- "follow_request_sent": false,
+ "id": 18477566,
+ "profile_sidebar_fill_color": "EFEFEF",
+ "verified": false,
"favourites_count": 11676,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874882228281345",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @oen_yakyu: ●継続試合(中京対崇徳)46回~ 9時~\n 〈ラジオ中継〉\n らじる★らじる→大阪放送局を選択→NHK-FM\n●決勝戦(三浦対中京or崇徳) 12時30分~\n 〈ラジオ中継〉\n らじる★らじる→大阪放送局を選択→NHK第一\n ※神奈川の方は普通のラ…",
- "lang": "ja",
- "source": "twicca",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 13
- ],
- "id": 2761692762,
- "id_str": "2761692762",
- "screen_name": "oen_yakyu",
- "name": "三浦学苑軟式野球部応援団!"
- }
- ],
- "hashtags": []
+ "url": "http://t.co/ll2yu78DGR"
},
- "retweet_count": 7,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:05 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 7,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874882228281345,
+ "retweeted": false,
+ "id_str": "505874882228281345",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874882110824448,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:05 +0000 2014",
+ "source": "スマホに密封★アニメ画像",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2725976444,
- "followers_count": 227,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "なんともめずらしい、いろんなキャラがスマホに閉じ込められています。 \r\nあなたのスマホにマッチする画像が見つかるかも♪ \r\n気に入ったら是非 RT & フォローお願いします。",
- "id_str": "2725976444",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/499155646164393984/l5vSz5zu_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/499155646164393984/l5vSz5zu_normal.jpeg",
"name": "スマホに密封★アニメ画像",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1918,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 12 11:27:54 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/499155646164393984/l5vSz5zu_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2725976444/1407843121",
- "protected": false,
- "statuses_count": 527,
- "friends_count": 1918,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2725976444",
+ "listed_count": 0,
+ "location": "",
"screen_name": "sumahoanime",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "なんともめずらしい、いろんなキャラがスマホに閉じ込められています。 \r\nあなたのスマホにマッチする画像が見つかるかも♪ \r\n気に入ったら是非 RT & フォローお願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/499155646164393984/l5vSz5zu_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 527,
+ "followers_count": 227,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2725976444/1407843121",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2725976444,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874882110824448",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "スマホに密封★アニメ画像",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:05 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874882110824448,
+ "retweeted": false,
+ "id_str": "505874882110824448",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874881297133568,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:05 +0000 2014",
+ "source": "アナタのそばの身近な危険",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2713926078,
- "followers_count": 301,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "知らないうちにやっている危険な行動を見つけて自分を守りましょう。 役に立つと思ったら RT & 相互フォローで みなさん、お願いします♪",
- "id_str": "2713926078",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/497279579245907968/Ftvms_HR_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/497279579245907968/Ftvms_HR_normal.jpeg",
"name": "アナタのそばの身近な危険",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1871,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Thu Aug 07 07:12:50 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/497279579245907968/Ftvms_HR_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2713926078/1407395683",
- "protected": false,
- "statuses_count": 644,
- "friends_count": 1871,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2713926078",
+ "listed_count": 0,
+ "location": "",
"screen_name": "mijika_kiken",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "知らないうちにやっている危険な行動を見つけて自分を守りましょう。 役に立つと思ったら RT & 相互フォローで みなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/497279579245907968/Ftvms_HR_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 644,
+ "followers_count": 301,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2713926078/1407395683",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2713926078,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874881297133568",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "アナタのそばの身近な危険",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:05 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874881297133568,
+ "retweeted": false,
+ "id_str": "505874881297133568",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
},
- "id": 505874880294682624,
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:04 +0000 2014",
+ "source": "人気者♥デイジー大好き",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2726199583,
- "followers_count": 190,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "デイジーの想いを、代わりにつぶやきます♪ \r\nデイジーのかわいい画像やグッズも大好きw \r\n可愛いと思ったら RT & フォローお願いします。 \r\n「非公式アカウントです」",
- "id_str": "2726199583",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/499178622494576640/EzWKdR_p_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/499178622494576640/EzWKdR_p_normal.jpeg",
"name": "人気者♥デイジー大好き",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 474,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 12 12:58:33 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/499178622494576640/EzWKdR_p_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2726199583/1407848478",
- "protected": false,
- "statuses_count": 469,
- "friends_count": 474,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2726199583",
+ "listed_count": 0,
+ "location": "",
"screen_name": "ninkimono_daosy",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "デイジーの想いを、代わりにつぶやきます♪ \r\nデイジーのかわいい画像やグッズも大好きw \r\n可愛いと思ったら RT & フォローお願いします。 \r\n「非公式アカウントです」",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/499178622494576640/EzWKdR_p_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 469,
+ "followers_count": 190,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2726199583/1407848478",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2726199583,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874880294682624",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "人気者♥デイジー大好き",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:04 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874880294682624,
+ "retweeted": false,
+ "id_str": "505874880294682624",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874879392919552,
- "user": {
- "is_translator": false,
- "id": 2721453846,
- "followers_count": 302,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "私が聞いて心に残った感動エピソードをお届けします。\r\n少しでも多くの人へ届けたいと思います。\r\nいいなと思ったら RT & フォローお願いします。",
- "id_str": "2721453846",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/498444554916216832/ml8EiQka_normal.jpeg",
- "listed_count": 0,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:04 +0000 2014",
+ "source": "幸せ話でフル充電しよう",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/498444554916216832/ml8EiQka_normal.jpeg",
"name": "幸せ話でフル充電しようww",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1886,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 10 12:16:25 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/498444554916216832/ml8EiQka_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2721453846/1407673555",
- "protected": false,
- "statuses_count": 508,
- "friends_count": 1886,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2721453846",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawasehanashi",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "私が聞いて心に残った感動エピソードをお届けします。\r\n少しでも多くの人へ届けたいと思います。\r\nいいなと思ったら RT & フォローお願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/498444554916216832/ml8EiQka_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 508,
+ "followers_count": 302,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2721453846/1407673555",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2721453846,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874879392919552",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "幸せ話でフル充電しよう",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:04 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874879392919552,
+ "retweeted": false,
+ "id_str": "505874879392919552",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505874364596621313,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "逢坂「くっ…僕の秘められし右目が…!」\n一同「……………。」",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:27:01 +0000 2014",
+ "source": "Twitter for Android",
+ "lang": "ja",
+ "favorite_count": 2,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1600750194,
- "followers_count": 155,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自由、気ままに。詳しくはツイプロ。アイコンはまめせろりちゃんからだよ☆~(ゝ。∂)",
- "id_str": "1600750194",
- "default_profile_image": false,
- "location": "逢坂紘夢のそばに",
- "time_zone": "Irkutsk",
- "profile_image_url": "http://pbs.twimg.com/profile_images/500293786287603713/Ywyh69eG_normal.jpeg",
- "listed_count": 10,
"entities": {
+ "description": {
+ "urls": []
+ },
"url": {
"urls": [
{
+ "display_url": "twpf.jp/Ang_Angel73",
+ "url": "http://t.co/kKCCwHTaph",
+ "expanded_url": "http://twpf.jp/Ang_Angel73",
"indices": [
0,
22
- ],
- "display_url": "twpf.jp/Ang_Angel73",
- "url": "http://t.co/kKCCwHTaph",
- "expanded_url": "http://twpf.jp/Ang_Angel73"
+ ]
}
]
- },
- "description": {
- "urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/500293786287603713/Ywyh69eG_normal.jpeg",
"name": "臙脂",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000027871001/aa764602922050b22bf9ade3741367dc.jpeg",
+ "friends_count": 154,
+ "time_zone": "Irkutsk",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Wed Jul 17 11:44:31 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/500293786287603713/Ywyh69eG_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/1600750194/1403879183",
- "protected": false,
- "statuses_count": 12342,
- "friends_count": 154,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": "http://t.co/kKCCwHTaph",
- "profile_sidebar_border_color": "FFFFFF",
- "lang": "ja",
+ "id_str": "1600750194",
+ "listed_count": 10,
+ "location": "逢坂紘夢のそばに",
"screen_name": "Ang_Angel73",
- "default_profile": false,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自由、気ままに。詳しくはツイプロ。アイコンはまめせろりちゃんからだよ☆~(ゝ。∂)",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000027871001/aa764602922050b22bf9ade3741367dc.jpeg",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/500293786287603713/Ywyh69eG_normal.jpeg",
+ "utc_offset": 32400,
"profile_background_tile": true,
+ "statuses_count": 12342,
+ "followers_count": 155,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "FFFFFF",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1600750194/1403879183",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000027871001/aa764602922050b22bf9ade3741367dc.jpeg",
- "follow_request_sent": false,
+ "id": 1600750194,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 2115,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 2,
- "id_str": "505874364596621313",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "逢坂「くっ…僕の秘められし右目が…!」\n一同「……………。」",
- "lang": "ja",
- "source": "Twitter for Android",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": "http://t.co/kKCCwHTaph"
},
- "retweet_count": 2,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:27:01 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 2,
"in_reply_to_status_id_str": null,
- "favorited": false
- },
- "id": 505874879103520768,
- "user": {
- "is_translator": false,
- "id": 2571968509,
- "followers_count": 156,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "大人です。気軽に絡んでくれるとうれしいです! イラスト大好き!(≧∇≦) BF(仮)逢坂紘夢くんにお熱です! マンガも好き♡欲望のままにつぶやきますのでご注意を。雑食♡",
- "id_str": "2571968509",
- "default_profile_image": false,
- "location": "草葉の陰",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/504990074862178304/DoBvOb9c_normal.jpeg",
- "listed_count": 14,
- "entities": {
- "description": {
- "urls": []
- }
- },
- "name": "イイヒト",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Tue Jun 17 01:18:34 +0000 2014",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2571968509/1409106012",
- "protected": false,
- "statuses_count": 7234,
- "friends_count": 165,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "IwiAlohomora",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/504990074862178304/DoBvOb9c_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 11926,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874879103520768",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "id": 505874364596621313,
+ "retweeted": false,
+ "id_str": "505874364596621313",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "retweeted": false,
- "contributors": null,
- "text": "RT @Ang_Angel73: 逢坂「くっ…僕の秘められし右目が…!」\n一同「……………。」",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "Ang_Angel73",
+ "id": 1600750194,
+ "id_str": "1600750194",
"indices": [
3,
15
],
- "id": 1600750194,
- "id_str": "1600750194",
- "screen_name": "Ang_Angel73",
"name": "臙脂"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 2,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @Ang_Angel73: 逢坂「くっ…僕の秘められし右目が…!」\n一同「……………。」",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:04 +0000 2014",
- "in_reply_to_user_id": null,
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/504990074862178304/DoBvOb9c_normal.jpeg",
+ "name": "イイヒト",
+ "friends_count": 165,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Tue Jun 17 01:18:34 +0000 2014",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/504990074862178304/DoBvOb9c_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "2571968509",
+ "listed_count": 14,
+ "location": "草葉の陰",
+ "screen_name": "IwiAlohomora",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "大人です。気軽に絡んでくれるとうれしいです! イラスト大好き!(≧∇≦) BF(仮)逢坂紘夢くんにお熱です! マンガも好き♡欲望のままにつぶやきますのでご注意を。雑食♡",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 7234,
+ "followers_count": 156,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2571968509/1409106012",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2571968509,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 11926,
+ "url": null
+ },
+ "in_reply_to_status_id": null,
+ "retweet_count": 2,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874879103520768,
+ "retweeted": false,
+ "id_str": "505874879103520768",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874877933314048,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:04 +0000 2014",
+ "source": "秘密の本音♥女子編",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2762237088,
- "followers_count": 123,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "普段は言えない「お・ん・なの建前と本音」をつぶやきます。 気になる あの人の本音も、わかるかも!? \r\nわかるって人は RT & フォローを、お願いします♪",
- "id_str": "2762237088",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/503519190364332032/BVjS_XBD_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503519190364332032/BVjS_XBD_normal.jpeg",
"name": "秘密の本音♥女子編",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 988,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 24 12:27:07 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503519190364332032/BVjS_XBD_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2762237088/1408883328",
- "protected": false,
- "statuses_count": 211,
- "friends_count": 988,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2762237088",
+ "listed_count": 0,
+ "location": "",
"screen_name": "honne_jyoshi1",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "普段は言えない「お・ん・なの建前と本音」をつぶやきます。 気になる あの人の本音も、わかるかも!? \r\nわかるって人は RT & フォローを、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503519190364332032/BVjS_XBD_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 211,
+ "followers_count": 123,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2762237088/1408883328",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2762237088,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874877933314048",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "秘密の本音♥女子編",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
- },
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:04 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874877933314048,
+ "retweeted": false,
+ "id_str": "505874877933314048",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874877148958721,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:04 +0000 2014",
+ "source": "美し過ぎる★色鉛筆アート",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2740047343,
- "followers_count": 321,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "ほんとにコレ色鉛筆なの~? \r\n本物と見間違える程のリアリティを御覧ください。 \r\n気に入ったら RT & 相互フォローお願いします♪",
- "id_str": "2740047343",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501039950972739585/isigil4V_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501039950972739585/isigil4V_normal.jpeg",
"name": "美し過ぎる★色鉛筆アート",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1990,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 17 16:15:05 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501039950972739585/isigil4V_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2740047343/1408292283",
- "protected": false,
- "statuses_count": 396,
- "friends_count": 1990,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2740047343",
+ "listed_count": 0,
+ "location": "",
"screen_name": "bi_iroenpitu",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ほんとにコレ色鉛筆なの~? \r\n本物と見間違える程のリアリティを御覧ください。 \r\n気に入ったら RT & 相互フォローお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501039950972739585/isigil4V_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 396,
+ "followers_count": 321,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2740047343/1408292283",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2740047343,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874877148958721",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "美し過ぎる★色鉛筆アート",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:04 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874877148958721,
+ "retweeted": false,
+ "id_str": "505874877148958721",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
- "id": 505874876465295361,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "【H15-9-4】道路を利用する利益は反射的利益であり、建築基準法に基づいて道路一の指定がなされている私道の敷地所有者に対し、通行妨害行為の排除を求める人格的権利を認めることはできない。→誤。",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:03 +0000 2014",
+ "source": "twittbot.net",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1886570281,
- "followers_count": 1554,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "行政書士の本試験問題の過去問(行政法分野)をランダムにつぶやきます。問題は随時追加中です。基本的に相互フォローします。※140字制限の都合上、表現は一部変えてあります。解説も文字数が可能であればなるべく…。",
- "id_str": "1886570281",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/378800000487791870/0e45e3c089c6b641cdd8d1b6f1ceb8a4_normal.jpeg",
- "listed_count": 12,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/378800000487791870/0e45e3c089c6b641cdd8d1b6f1ceb8a4_normal.jpeg",
"name": "行政法過去問",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1772,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Fri Sep 20 13:24:29 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000487791870/0e45e3c089c6b641cdd8d1b6f1ceb8a4_normal.jpeg",
"geo_enabled": false,
- "protected": false,
- "statuses_count": 14565,
- "friends_count": 1772,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "1886570281",
+ "listed_count": 12,
+ "location": "",
"screen_name": "gyosei_goukaku",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "行政書士の本試験問題の過去問(行政法分野)をランダムにつぶやきます。問題は随時追加中です。基本的に相互フォローします。※140字制限の都合上、表現は一部変えてあります。解説も文字数が可能であればなるべく…。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000487791870/0e45e3c089c6b641cdd8d1b6f1ceb8a4_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 14565,
+ "followers_count": 1554,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "lang": "ja",
+ "following": false,
+ "default_profile": true,
+ "is_translator": false,
+ "profile_link_color": "0084B4",
+ "profile_sidebar_border_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 1886570281,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874876465295361",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "【H15-9-4】道路を利用する利益は反射的利益であり、建築基準法に基づいて道路一の指定がなされている私道の敷地所有者に対し、通行妨害行為の排除を求める人格的権利を認めることはできない。→誤。",
- "lang": "ja",
- "source": "twittbot.net",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 0,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:03 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874876465295361,
+ "retweeted": false,
+ "id_str": "505874876465295361",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
- },
- "id": 505874876318511104,
- "user": {
- "is_translator": false,
- "id": 2744863153,
- "followers_count": 76,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "いったいどうやったら、その領域にたどりつけるのか!? \r\nそんな思わず笑ってしまう別世界の発想力をお届けします♪ \r\nおもしろかったら RT & 相互フォローで、お願いします。",
- "id_str": "2744863153",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501715651686178816/Fgpe0B8M_normal.jpeg",
- "listed_count": 0,
- "entities": {
- "description": {
- "urls": []
- }
- },
- "name": "K点越えの発想力!!",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Tue Aug 19 13:00:08 +0000 2014",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744863153/1408453328",
- "protected": false,
- "statuses_count": 341,
- "friends_count": 957,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "kgoehassou",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501715651686178816/Fgpe0B8M_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874876318511104",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "K点越えの発想力!!",
- "truncated": false,
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
"indices": [
3,
19
],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
"name": "幸せの☆お守り"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:03 +0000 2014",
- "in_reply_to_user_id": null,
+ "source": "K点越えの発想力!!",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501715651686178816/Fgpe0B8M_normal.jpeg",
+ "name": "K点越えの発想力!!",
+ "friends_count": 957,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Tue Aug 19 13:00:08 +0000 2014",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501715651686178816/Fgpe0B8M_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "2744863153",
+ "listed_count": 0,
+ "location": "",
+ "screen_name": "kgoehassou",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "いったいどうやったら、その領域にたどりつけるのか!? \r\nそんな思わず笑ってしまう別世界の発想力をお届けします♪ \r\nおもしろかったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 341,
+ "followers_count": 76,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744863153/1408453328",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2744863153,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
+ },
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874876318511104,
+ "retweeted": false,
+ "id_str": "505874876318511104",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874875521581056,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:03 +0000 2014",
+ "source": "血液型の真実2",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2698625690,
- "followers_count": 193,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "やっぱりそうだったのか~♪\r\n意外な、あの人の裏側を見つけます。\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
- "id_str": "2698625690",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/495241446706790400/h_0DSFPG_normal.png",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/495241446706790400/h_0DSFPG_normal.png",
"name": "血液型の真実",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1785,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Fri Aug 01 16:11:40 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/495241446706790400/h_0DSFPG_normal.png",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2698625690/1406911319",
- "protected": false,
- "statuses_count": 769,
- "friends_count": 1785,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2698625690",
+ "listed_count": 1,
+ "location": "",
"screen_name": "ketueki_sinjitu",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "やっぱりそうだったのか~♪\r\n意外な、あの人の裏側を見つけます。\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/495241446706790400/h_0DSFPG_normal.png",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 769,
+ "followers_count": 193,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2698625690/1406911319",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2698625690,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874875521581056",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "血液型の真実2",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:03 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874875521581056,
+ "retweeted": false,
+ "id_str": "505874875521581056",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874874712072192,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:03 +0000 2014",
+ "source": "やっぱり神が??を作る時",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2714868440,
- "followers_count": 243,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "やっぱり今日も、神は何かを作ろうとしています 笑。 どうやって作っているのかわかったら RT & 相互フォローで みなさん、お願いします♪",
- "id_str": "2714868440",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/497416102108884992/NRMEbKaT_normal.png",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/497416102108884992/NRMEbKaT_normal.png",
"name": "やっぱり神が??を作る時",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1907,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Thu Aug 07 16:12:33 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/497416102108884992/NRMEbKaT_normal.png",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2714868440/1407428237",
- "protected": false,
- "statuses_count": 590,
- "friends_count": 1907,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2714868440",
+ "listed_count": 0,
+ "location": "",
"screen_name": "yahari_kamiga",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "やっぱり今日も、神は何かを作ろうとしています 笑。 どうやって作っているのかわかったら RT & 相互フォローで みなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/497416102108884992/NRMEbKaT_normal.png",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 590,
+ "followers_count": 243,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2714868440/1407428237",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2714868440,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874874712072192",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "やっぱり神が??を作る時",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:03 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874874712072192,
+ "retweeted": false,
+ "id_str": "505874874712072192",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505827689660313600,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "Lightworker19",
+ "id": 238157843,
+ "id_str": "238157843",
+ "indices": [
+ 54,
+ 68
+ ],
+ "name": "Lightworker"
+ }
+ ],
+ "urls": [
+ {
+ "display_url": "tepco.co.jp/nu/fukushima-n…",
+ "url": "http://t.co/ZkU4TZCGPG",
+ "expanded_url": "http://www.tepco.co.jp/nu/fukushima-np/review/images/review1_01.gif",
+ "indices": [
+ 17,
+ 39
+ ]
+ },
+ {
+ "display_url": "youtu.be/gDXEhyuVSDk",
+ "url": "http://t.co/lmlgp38fgZ",
+ "expanded_url": "http://youtu.be/gDXEhyuVSDk",
+ "indices": [
+ 99,
+ 121
+ ]
+ }
+ ],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": 238157843,
+ "place": null,
+ "in_reply_to_user_id_str": "238157843",
+ "text": "福島第一原発の構内地図がこちら。\nhttp://t.co/ZkU4TZCGPG\nどう見ても、1号機。\nRT @Lightworker19: 【大拡散】 福島第一原発 4号機 爆発動画 40秒~ http://t.co/lmlgp38fgZ",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
+ "created_at": "Sat Aug 30 21:21:33 +0000 2014",
+ "source": "TweetDeck",
+ "lang": "ja",
+ "favorite_count": 1,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 29599253,
- "followers_count": 5136,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "私の機能一覧:歌う、演劇、ネットワークエンジニア、ライター、プログラマ、翻訳、シルバーアクセサリ、……何をやってる人かは良くわからない人なので、「機能」が欲しい人は私にがっかりするでしょう。私って人間に御用があるなら別ですが。",
- "id_str": "29599253",
- "default_profile_image": false,
- "location": "i7",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/2049751947/takuramix1204_normal.jpg",
- "listed_count": 335,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/2049751947/takuramix1204_normal.jpg",
"name": "タクラミックス",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 724,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Wed Apr 08 01:10:58 +0000 2009",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/2049751947/takuramix1204_normal.jpg",
"geo_enabled": false,
- "protected": false,
- "statuses_count": 70897,
- "friends_count": 724,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "29599253",
+ "listed_count": 335,
+ "location": "i7",
"screen_name": "takuramix",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "私の機能一覧:歌う、演劇、ネットワークエンジニア、ライター、プログラマ、翻訳、シルバーアクセサリ、……何をやってる人かは良くわからない人なので、「機能」が欲しい人は私にがっかりするでしょう。私って人間に御用があるなら別ですが。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/2049751947/takuramix1204_normal.jpg",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 70897,
+ "followers_count": 5136,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "lang": "ja",
+ "following": false,
+ "default_profile": true,
+ "is_translator": false,
+ "profile_link_color": "0084B4",
+ "profile_sidebar_border_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 29599253,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 21363,
- "verified": false
- },
- "in_reply_to_user_id_str": "238157843",
- "in_reply_to_screen_name": "Lightworker19",
- "favorite_count": 1,
- "id_str": "505827689660313600",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "福島第一原発の構内地図がこちら。\nhttp://t.co/ZkU4TZCGPG\nどう見ても、1号機。\nRT @Lightworker19: 【大拡散】 福島第一原発 4号機 爆発動画 40秒~ http://t.co/lmlgp38fgZ",
- "lang": "ja",
- "source": "TweetDeck",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [
- {
- "indices": [
- 17,
- 39
- ],
- "display_url": "tepco.co.jp/nu/fukushima-n…",
- "url": "http://t.co/ZkU4TZCGPG",
- "expanded_url": "http://www.tepco.co.jp/nu/fukushima-np/review/images/review1_01.gif"
- },
- {
- "indices": [
- 99,
- 121
- ],
- "display_url": "youtu.be/gDXEhyuVSDk",
- "url": "http://t.co/lmlgp38fgZ",
- "expanded_url": "http://youtu.be/gDXEhyuVSDk"
- }
- ],
- "user_mentions": [
- {
- "indices": [
- 54,
- 68
- ],
- "id": 238157843,
- "id_str": "238157843",
- "screen_name": "Lightworker19",
- "name": "Lightworker"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 1,
"in_reply_to_status_id": 505774460910043136,
- "coordinates": null,
- "place": null,
- "created_at": "Sat Aug 30 21:21:33 +0000 2014",
- "in_reply_to_user_id": 238157843,
+ "retweet_count": 1,
"in_reply_to_status_id_str": "505774460910043136",
- "favorited": false
- },
- "id": 505874874275864576,
- "user": {
- "is_translator": false,
- "id": 62525372,
- "followers_count": 270,
- "profile_sidebar_fill_color": "F065A8",
- "description": "【無断転載禁止・コピペ禁止・非公式RT禁止】【必読!】⇒ http://t.co/nuUvfUVD 今現在活動中の東方神起YUNHO&CHANGMINの2人を全力で応援しています!!(^_-)-☆ ※東方神起及びYUNHO&CHANGMINを応援していない方・鍵付ユーザーのフォローお断り!",
- "id_str": "62525372",
- "default_profile_image": false,
- "location": "JAPAN",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/3699005246/9ba2e306518d296b68b7cbfa5e4ce4e6_normal.jpeg",
- "listed_count": 4,
- "entities": {
- "description": {
- "urls": [
- {
- "indices": [
- 29,
- 49
- ],
- "display_url": "goo.gl/SrGLb",
- "url": "http://t.co/nuUvfUVD",
- "expanded_url": "http://goo.gl/SrGLb"
- }
- ]
- }
- },
- "name": "NANCY-MOON☆ひよこちゃん☆",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/470849781397336064/ltM6EdFn.jpeg",
- "contributors_enabled": false,
- "utc_offset": 32400,
- "created_at": "Mon Aug 03 14:22:24 +0000 2009",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/62525372/1401094223",
- "protected": false,
- "statuses_count": 180310,
- "friends_count": 328,
- "profile_link_color": "FF0000",
- "profile_background_color": "642D8B",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "FFFFFF",
- "lang": "ja",
- "screen_name": "nancy_moon_703",
- "default_profile": false,
- "profile_use_background_image": true,
- "profile_text_color": "080808",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/3699005246/9ba2e306518d296b68b7cbfa5e4ce4e6_normal.jpeg",
- "profile_background_tile": true,
- "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/470849781397336064/ltM6EdFn.jpeg",
- "follow_request_sent": false,
- "favourites_count": 3283,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874874275864576",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "id": 505827689660313600,
+ "retweeted": false,
+ "id_str": "505827689660313600",
+ "geo": null,
+ "in_reply_to_screen_name": "Lightworker19"
},
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "RT @takuramix: 福島第一原発の構内地図がこちら。\nhttp://t.co/ZkU4TZCGPG\nどう見ても、1号機。\nRT @Lightworker19: 【大拡散】 福島第一原発 4号機 爆発動画 40秒~ http://t.co/lmlgp38fgZ",
- "lang": "ja",
- "source": "ツイタマ",
- "truncated": false,
"entities": {
- "symbols": [],
- "urls": [
- {
- "indices": [
- 32,
- 54
- ],
- "display_url": "tepco.co.jp/nu/fukushima-n…",
- "url": "http://t.co/ZkU4TZCGPG",
- "expanded_url": "http://www.tepco.co.jp/nu/fukushima-np/review/images/review1_01.gif"
- },
- {
- "indices": [
- 114,
- 136
- ],
- "display_url": "youtu.be/gDXEhyuVSDk",
- "url": "http://t.co/lmlgp38fgZ",
- "expanded_url": "http://youtu.be/gDXEhyuVSDk"
- }
- ],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "takuramix",
+ "id": 29599253,
+ "id_str": "29599253",
"indices": [
3,
13
- ],
- "id": 29599253,
- "id_str": "29599253",
- "screen_name": "takuramix",
+ ],
"name": "タクラミックス"
},
{
+ "screen_name": "Lightworker19",
+ "id": 238157843,
+ "id_str": "238157843",
"indices": [
69,
83
],
- "id": 238157843,
- "id_str": "238157843",
- "screen_name": "Lightworker19",
"name": "Lightworker"
}
],
- "hashtags": []
+ "urls": [
+ {
+ "display_url": "tepco.co.jp/nu/fukushima-n…",
+ "url": "http://t.co/ZkU4TZCGPG",
+ "expanded_url": "http://www.tepco.co.jp/nu/fukushima-np/review/images/review1_01.gif",
+ "indices": [
+ 32,
+ 54
+ ]
+ },
+ {
+ "display_url": "youtu.be/gDXEhyuVSDk",
+ "url": "http://t.co/lmlgp38fgZ",
+ "expanded_url": "http://youtu.be/gDXEhyuVSDk",
+ "indices": [
+ 114,
+ 136
+ ]
+ }
+ ],
+ "symbols": []
},
- "retweet_count": 1,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @takuramix: 福島第一原発の構内地図がこちら。\nhttp://t.co/ZkU4TZCGPG\nどう見ても、1号機。\nRT @Lightworker19: 【大拡散】 福島第一原発 4号機 爆発動画 40秒~ http://t.co/lmlgp38fgZ",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:03 +0000 2014",
- "in_reply_to_user_id": null,
+ "source": "ツイタマ",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": [
+ {
+ "display_url": "goo.gl/SrGLb",
+ "url": "http://t.co/nuUvfUVD",
+ "expanded_url": "http://goo.gl/SrGLb",
+ "indices": [
+ 29,
+ 49
+ ]
+ }
+ ]
+ }
+ },
+ "protected": false,
+ "profile_background_color": "642D8B",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/3699005246/9ba2e306518d296b68b7cbfa5e4ce4e6_normal.jpeg",
+ "name": "NANCY-MOON☆ひよこちゃん☆",
+ "friends_count": 328,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Mon Aug 03 14:22:24 +0000 2009",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/3699005246/9ba2e306518d296b68b7cbfa5e4ce4e6_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "62525372",
+ "listed_count": 4,
+ "location": "JAPAN",
+ "screen_name": "nancy_moon_703",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "【無断転載禁止・コピペ禁止・非公式RT禁止】【必読!】⇒ http://t.co/nuUvfUVD 今現在活動中の東方神起YUNHO&CHANGMINの2人を全力で応援しています!!(^_-)-☆ ※東方神起及びYUNHO&CHANGMINを応援していない方・鍵付ユーザーのフォローお断り!",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/470849781397336064/ltM6EdFn.jpeg",
+ "profile_text_color": "080808",
+ "utc_offset": 32400,
+ "profile_background_tile": true,
+ "statuses_count": 180310,
+ "followers_count": 270,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "FFFFFF",
+ "profile_link_color": "FF0000",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/62525372/1401094223",
+ "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/470849781397336064/ltM6EdFn.jpeg",
+ "id": 62525372,
+ "profile_sidebar_fill_color": "F065A8",
+ "verified": false,
+ "favourites_count": 3283,
+ "url": null
+ },
+ "in_reply_to_status_id": null,
+ "retweet_count": 1,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874874275864576,
+ "retweeted": false,
+ "id_str": "505874874275864576",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874873961308160,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:03 +0000 2014",
+ "source": "やっぱりアナ雪が好き♥",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2714052962,
- "followers_count": 368,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "なんだかんだ言ってもやっぱりアナ雪が好きなんですよね~♪ \r\n私も好きって人は RT & 相互フォローで みなさん、お願いします♪",
- "id_str": "2714052962",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/497299646662705153/KMo3gkv7_normal.jpeg",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/497299646662705153/KMo3gkv7_normal.jpeg",
"name": "やっぱりアナ雪が好き♥",
+ "friends_count": 1826,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Thu Aug 07 08:29:13 +0000 2014",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/497299646662705153/KMo3gkv7_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "2714052962",
+ "listed_count": 1,
+ "location": "",
+ "screen_name": "anayuki_suki",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "なんだかんだ言ってもやっぱりアナ雪が好きなんですよね~♪ \r\n私も好きって人は RT & 相互フォローで みなさん、お願いします♪",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
+ "profile_text_color": "333333",
"utc_offset": null,
- "created_at": "Thu Aug 07 08:29:13 +0000 2014",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2714052962/1407400477",
- "protected": false,
+ "profile_background_tile": false,
"statuses_count": 670,
- "friends_count": 1826,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "anayuki_suki",
- "default_profile": true,
+ "followers_count": 368,
"profile_use_background_image": true,
- "profile_text_color": "333333",
+ "default_profile_image": false,
"following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/497299646662705153/KMo3gkv7_normal.jpeg",
- "profile_background_tile": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2714052962/1407400477",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2714052962,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
+ "in_reply_to_status_id_str": null,
+ "id": 505874873961308160,
+ "retweeted": false,
"id_str": "505874873961308160",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "やっぱりアナ雪が好き♥",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [
{
+ "display_url": "news24h.allnews24h.com/FX54",
+ "url": "http://t.co/toQgVlXPyH",
+ "expanded_url": "http://news24h.allnews24h.com/FX54",
"indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
+ 114,
+ 136
+ ]
}
],
- "hashtags": []
+ "symbols": []
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "四川盆地江淮等地将有强降雨 开学日多地将有雨: 中新网8月31日电 据中央气象台消息,江淮东部、四川盆地东北部等地今天(31日)又将迎来一场暴雨或大暴雨天气。明天9月1日,是中小学生开学的日子。预计明天,内蒙古中部、... http://t.co/toQgVlXPyH",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "zh"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:03 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874873759977473,
+ "source": "twitterfeed",
+ "lang": "zh",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2281979863,
- "followers_count": 719,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "",
- "id_str": "2281979863",
- "default_profile_image": false,
- "location": "",
- "time_zone": "Amsterdam",
- "profile_image_url": "http://pbs.twimg.com/profile_images/439031926569979904/SlBH9iMg_normal.png",
- "listed_count": 7,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/439031926569979904/SlBH9iMg_normal.png",
"name": "News 24h China",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/452558963754561536/QPID3isM.jpeg",
+ "friends_count": 807,
+ "time_zone": "Amsterdam",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 7200,
"created_at": "Wed Jan 08 10:56:04 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/439031926569979904/SlBH9iMg_normal.png",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2281979863/1393508427",
- "protected": false,
- "statuses_count": 94782,
- "friends_count": 807,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "FFFFFF",
- "lang": "it",
+ "id_str": "2281979863",
+ "listed_count": 7,
+ "location": "",
"screen_name": "news24hchn",
- "default_profile": false,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/452558963754561536/QPID3isM.jpeg",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/439031926569979904/SlBH9iMg_normal.png",
+ "utc_offset": 7200,
"profile_background_tile": true,
+ "statuses_count": 94782,
+ "followers_count": 719,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "it",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "FFFFFF",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2281979863/1393508427",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/452558963754561536/QPID3isM.jpeg",
- "follow_request_sent": false,
+ "id": 2281979863,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 0,
+ "in_reply_to_status_id_str": null,
+ "id": 505874873759977473,
+ "retweeted": false,
"id_str": "505874873759977473",
"geo": null,
- "metadata": {
- "iso_language_code": "zh",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "四川盆地江淮等地将有强降雨 开学日多地将有雨: 中新网8月31日电 据中央气象台消息,江淮东部、四川盆地东北部等地今天(31日)又将迎来一场暴雨或大暴雨天气。明天9月1日,是中小学生开学的日子。预计明天,内蒙古中部、... http://t.co/toQgVlXPyH",
- "lang": "zh",
- "source": "twitterfeed",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [
+ "hashtags": [],
+ "user_mentions": [
{
+ "screen_name": "Take3carnifex",
+ "id": 535179785,
+ "id_str": "535179785",
"indices": [
- 114,
- 136
+ 0,
+ 14
],
- "display_url": "news24h.allnews24h.com/FX54",
- "url": "http://t.co/toQgVlXPyH",
- "expanded_url": "http://news24h.allnews24h.com/FX54"
+ "name": "Take3"
}
],
- "user_mentions": [],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": 535179785,
"place": null,
+ "in_reply_to_user_id_str": "535179785",
+ "text": "@Take3carnifex それは大変!一大事!命に関わります!\n是非うちに受診して下さい!",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:03 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874873248268288,
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 226897125,
- "followers_count": 296,
- "profile_sidebar_fill_color": "EFEFEF",
- "description": "hackというバンドで、ギターを弾いています。 モンハンとポケモンが好き。 \nSPRING WATER リードギター(ヘルプ)\nROCK OUT レギュラーDJ",
- "id_str": "226897125",
- "default_profile_image": false,
- "location": "",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/378800000504584690/8ccba98eda8c0fd1d15a74e401f621d1_normal.jpeg",
- "listed_count": 3,
"entities": {
+ "description": {
+ "urls": []
+ },
"url": {
"urls": [
{
+ "display_url": "s.ameblo.jp/hikarihikarimay",
+ "url": "http://t.co/SQLZnvjVxB",
+ "expanded_url": "http://s.ameblo.jp/hikarihikarimay",
"indices": [
0,
22
- ],
- "display_url": "s.ameblo.jp/hikarihikarimay",
- "url": "http://t.co/SQLZnvjVxB",
- "expanded_url": "http://s.ameblo.jp/hikarihikarimay"
+ ]
}
]
- },
- "description": {
- "urls": []
}
},
+ "protected": false,
+ "profile_background_color": "131516",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/378800000504584690/8ccba98eda8c0fd1d15a74e401f621d1_normal.jpeg",
"name": "ひかり@hack",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
+ "friends_count": 348,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Wed Dec 15 10:51:51 +0000 2010",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000504584690/8ccba98eda8c0fd1d15a74e401f621d1_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/226897125/1385551752",
- "protected": false,
- "statuses_count": 3293,
- "friends_count": 348,
- "profile_link_color": "009999",
- "profile_background_color": "131516",
- "notifications": false,
- "url": "http://t.co/SQLZnvjVxB",
- "profile_sidebar_border_color": "EEEEEE",
- "lang": "ja",
+ "id_str": "226897125",
+ "listed_count": 3,
+ "location": "",
"screen_name": "hikari_thirteen",
- "default_profile": false,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "hackというバンドで、ギターを弾いています。 モンハンとポケモンが好き。 \nSPRING WATER リードギター(ヘルプ)\nROCK OUT レギュラーDJ",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000504584690/8ccba98eda8c0fd1d15a74e401f621d1_normal.jpeg",
+ "utc_offset": 32400,
"profile_background_tile": true,
+ "statuses_count": 3293,
+ "followers_count": 296,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "EEEEEE",
+ "profile_link_color": "009999",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/226897125/1385551752",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",
- "follow_request_sent": false,
+ "id": 226897125,
+ "profile_sidebar_fill_color": "EFEFEF",
+ "verified": false,
"favourites_count": 33,
- "verified": false
+ "url": "http://t.co/SQLZnvjVxB"
},
- "in_reply_to_user_id_str": "535179785",
- "in_reply_to_screen_name": "Take3carnifex",
- "favorite_count": 0,
- "id_str": "505874873248268288",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "@Take3carnifex それは大変!一大事!命に関わります!\n是非うちに受診して下さい!",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 0,
- 14
- ],
- "id": 535179785,
- "id_str": "535179785",
- "screen_name": "Take3carnifex",
- "name": "Take3"
- }
- ],
- "hashtags": []
- },
- "retweet_count": 0,
"in_reply_to_status_id": 505874353716600832,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:03 +0000 2014",
- "in_reply_to_user_id": 535179785,
+ "retweet_count": 0,
"in_reply_to_status_id_str": "505874353716600832",
- "favorited": false
+ "id": 505874873248268288,
+ "retweeted": false,
+ "id_str": "505874873248268288",
+ "geo": null,
+ "in_reply_to_screen_name": "Take3carnifex"
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874873223110656,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:03 +0000 2014",
+ "source": "今どき女子高生の謎w",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2744236873,
- "followers_count": 79,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "思わず耳を疑う男性の方の夢を壊してしまう、\r\n女子高生達のディープな世界を見てください☆ \r\nおもしろいと思ったら RT & 相互フォローでお願いします♪",
- "id_str": "2744236873",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501627015980535808/avWBgkDh_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501627015980535808/avWBgkDh_normal.jpeg",
"name": "今どき女子高生の謎w",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 973,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 07:06:47 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501627015980535808/avWBgkDh_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744236873/1408432455",
- "protected": false,
- "statuses_count": 354,
- "friends_count": 973,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2744236873",
+ "listed_count": 0,
+ "location": "",
"screen_name": "imadokijoshiko",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "思わず耳を疑う男性の方の夢を壊してしまう、\r\n女子高生達のディープな世界を見てください☆ \r\nおもしろいと思ったら RT & 相互フォローでお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501627015980535808/avWBgkDh_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 354,
+ "followers_count": 79,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744236873/1408432455",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2744236873,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874873223110656",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "今どき女子高生の謎w",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:03 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874873223110656,
+ "retweeted": false,
+ "id_str": "505874873223110656",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874872463925248,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:02 +0000 2014",
+ "source": "私の理想の男性像",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2761782601,
- "followers_count": 69,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "こんな男性♥ ほんとにいるのかしら!? \r\n「いたらいいのになぁ」っていう理想の男性像をを、私目線でつぶやきます。 \r\nいいなと思った人は RT & フォローお願いします♪",
- "id_str": "2761782601",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/503452833719410688/tFU509Yk_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503452833719410688/tFU509Yk_normal.jpeg",
"name": "私の理想の男性像",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 974,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 24 08:03:32 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503452833719410688/tFU509Yk_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2761782601/1408867519",
- "protected": false,
- "statuses_count": 208,
- "friends_count": 974,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2761782601",
+ "listed_count": 0,
+ "location": "",
"screen_name": "risou_dansei",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "こんな男性♥ ほんとにいるのかしら!? \r\n「いたらいいのになぁ」っていう理想の男性像をを、私目線でつぶやきます。 \r\nいいなと思った人は RT & フォローお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503452833719410688/tFU509Yk_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 208,
+ "followers_count": 69,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2761782601/1408867519",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2761782601,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874872463925248",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "私の理想の男性像",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:02 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874872463925248,
+ "retweeted": false,
+ "id_str": "505874872463925248",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874871713157120,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:02 +0000 2014",
+ "source": "激アツ★6秒動画",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2725690658,
- "followers_count": 195,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "話題の6秒動画! \r\n思わず「ほんとかよっ」てツッコんでしまう内容のオンパレード! \r\nおもしろかったら、是非 RT & フォローお願いします。",
- "id_str": "2725690658",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/499107997444886528/3rl6FrIk_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/499107997444886528/3rl6FrIk_normal.jpeg",
"name": "激アツ★6秒動画",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 494,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 12 08:17:29 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/499107997444886528/3rl6FrIk_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2725690658/1407832963",
- "protected": false,
- "statuses_count": 477,
- "friends_count": 494,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2725690658",
+ "listed_count": 0,
+ "location": "",
"screen_name": "gekiatu_6byou",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "話題の6秒動画! \r\n思わず「ほんとかよっ」てツッコんでしまう内容のオンパレード! \r\nおもしろかったら、是非 RT & フォローお願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/499107997444886528/3rl6FrIk_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 477,
+ "followers_count": 195,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2725690658/1407832963",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2725690658,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
+ "in_reply_to_status_id_str": null,
+ "id": 505874871713157120,
+ "retweeted": false,
"id_str": "505874871713157120",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "激アツ★6秒動画",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
+ "hashtags": [],
+ "user_mentions": [],
+ "media": [
{
+ "display_url": "pic.twitter.com/okrAoxSbt0",
+ "media_url_https": "https://pbs.twimg.com/media/BwU6g-dCcAALxAW.png",
+ "expanded_url": "http://twitter.com/waraeru_kan/status/505874871616671744/photo/1",
+ "sizes": {
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ },
+ "medium": {
+ "h": 750,
+ "w": 600,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 425,
+ "w": 340,
+ "resize": "fit"
+ },
+ "large": {
+ "h": 750,
+ "w": 600,
+ "resize": "fit"
+ }
+ },
+ "media_url": "http://pbs.twimg.com/media/BwU6g-dCcAALxAW.png",
"indices": [
- 3,
- 19
+ 98,
+ 120
],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
+ "id": 505874871344066560,
+ "id_str": "505874871344066560",
+ "type": "photo",
+ "url": "http://t.co/okrAoxSbt0"
+ }
+ ],
+ "urls": [
+ {
+ "display_url": "bit.ly/1qBa1nl",
+ "url": "http://t.co/jRWJt8IrSB",
+ "expanded_url": "http://bit.ly/1qBa1nl",
+ "indices": [
+ 75,
+ 97
+ ]
}
],
- "hashtags": []
+ "symbols": []
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "爆笑ww珍解答集!\n先生のツメの甘さと生徒のセンスを感じる一問一答だとFBでも話題!!\nうどん天下一決定戦ウィンドウズ9三重高校竹内由恵アナ花火保険\nhttp://t.co/jRWJt8IrSB http://t.co/okrAoxSbt0",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:02 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874871616671744,
+ "source": "笑える博物館",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2748747362,
- "followers_count": 19,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "",
- "id_str": "2748747362",
- "default_profile_image": true,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png",
"name": "笑える博物館",
+ "friends_count": 10,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Wed Aug 20 11:11:04 +0000 2014",
+ "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png",
+ "geo_enabled": false,
+ "id_str": "2748747362",
+ "listed_count": 0,
+ "location": "",
+ "screen_name": "waraeru_kan",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "",
"profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
+ "profile_text_color": "333333",
"utc_offset": null,
- "created_at": "Wed Aug 20 11:11:04 +0000 2014",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "protected": false,
+ "profile_background_tile": false,
"statuses_count": 15137,
- "friends_count": 10,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "waraeru_kan",
- "default_profile": true,
+ "followers_count": 19,
"profile_use_background_image": true,
- "profile_text_color": "333333",
+ "default_profile_image": true,
+ "lang": "ja",
"following": false,
- "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png",
- "profile_background_tile": false,
+ "default_profile": true,
+ "is_translator": false,
+ "profile_link_color": "0084B4",
+ "profile_sidebar_border_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2748747362,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 0,
+ "in_reply_to_status_id_str": null,
+ "id": 505874871616671744,
+ "retweeted": false,
"id_str": "505874871616671744",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "爆笑ww珍解答集!\n先生のツメの甘さと生徒のセンスを感じる一問一答だとFBでも話題!!\nうどん天下一決定戦ウィンドウズ9三重高校竹内由恵アナ花火保険\nhttp://t.co/jRWJt8IrSB http://t.co/okrAoxSbt0",
- "lang": "ja",
- "source": "笑える博物館",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "urls": [
+ "hashtags": [
{
+ "text": "ふぁぼした人にやる",
"indices": [
- 75,
- 97
- ],
- "display_url": "bit.ly/1qBa1nl",
- "url": "http://t.co/jRWJt8IrSB",
- "expanded_url": "http://bit.ly/1qBa1nl"
+ 128,
+ 138
+ ]
}
],
- "media": [
+ "user_mentions": [
{
+ "screen_name": "nasan_arai",
+ "id": 1717603286,
+ "id_str": "1717603286",
"indices": [
- 98,
- 120
+ 0,
+ 11
],
- "id": 505874871344066560,
- "media_url": "http://pbs.twimg.com/media/BwU6g-dCcAALxAW.png",
- "sizes": {
- "small": {
- "w": 340,
- "resize": "fit",
- "h": 425
- },
- "thumb": {
- "w": 150,
- "resize": "crop",
- "h": 150
- },
- "large": {
- "w": 600,
- "resize": "fit",
- "h": 750
- },
- "medium": {
- "w": 600,
- "resize": "fit",
- "h": 750
- }
- },
- "id_str": "505874871344066560",
- "expanded_url": "http://twitter.com/waraeru_kan/status/505874871616671744/photo/1",
- "type": "photo",
- "display_url": "pic.twitter.com/okrAoxSbt0",
- "url": "http://t.co/okrAoxSbt0",
- "media_url_https": "https://pbs.twimg.com/media/BwU6g-dCcAALxAW.png"
+ "name": "なーさん"
}
],
- "symbols": [],
- "user_mentions": [],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": 1717603286,
"place": null,
+ "in_reply_to_user_id_str": "1717603286",
+ "text": "@nasan_arai \n名前→なーさん\n第一印象→誰。(´・_・`)\n今の印象→れいら♡\nLINE交換できる?→してる(「・ω・)「\n好きなところ→可愛い優しい優しい優しい\n最後に一言→なーさん好き〜(´・_・`)♡GEM現場おいでね(´・_・`)♡\n\n#ふぁぼした人にやる",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:02 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874871268540416,
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2417626784,
- "followers_count": 198,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "⁽⁽٩( ᐖ )۶⁾⁾ ❤︎ 武 田 舞 彩 ❤︎ ₍₍٩( ᐛ )۶₎₎",
- "id_str": "2417626784",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/505516858816987136/4gFGjHzu_normal.jpeg",
- "listed_count": 1,
"entities": {
+ "description": {
+ "urls": []
+ },
"url": {
"urls": [
{
+ "display_url": "twpf.jp/Ymaaya_gem",
+ "url": "http://t.co/wR0Qb76TbB",
+ "expanded_url": "http://twpf.jp/Ymaaya_gem",
"indices": [
0,
22
- ],
- "display_url": "twpf.jp/Ymaaya_gem",
- "url": "http://t.co/wR0Qb76TbB",
- "expanded_url": "http://twpf.jp/Ymaaya_gem"
+ ]
}
]
- },
- "description": {
- "urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/505516858816987136/4gFGjHzu_normal.jpeg",
"name": "✩.ゆきଘ(*´꒳`)",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 245,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sat Mar 29 16:03:06 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/505516858816987136/4gFGjHzu_normal.jpeg",
"geo_enabled": true,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2417626784/1407764793",
- "protected": false,
- "statuses_count": 8056,
- "friends_count": 245,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": "http://t.co/wR0Qb76TbB",
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2417626784",
+ "listed_count": 1,
+ "location": "",
"screen_name": "Ymaaya_gem",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "⁽⁽٩( ᐖ )۶⁾⁾ ❤︎ 武 田 舞 彩 ❤︎ ₍₍٩( ᐛ )۶₎₎",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/505516858816987136/4gFGjHzu_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 8056,
+ "followers_count": 198,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2417626784/1407764793",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2417626784,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 3818,
- "verified": false
+ "url": "http://t.co/wR0Qb76TbB"
},
- "in_reply_to_user_id_str": "1717603286",
- "in_reply_to_screen_name": "nasan_arai",
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 0,
+ "in_reply_to_status_id_str": null,
+ "id": 505874871268540416,
+ "retweeted": false,
"id_str": "505874871268540416",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "@nasan_arai \n名前→なーさん\n第一印象→誰。(´・_・`)\n今の印象→れいら♡\nLINE交換できる?→してる(「・ω・)「\n好きなところ→可愛い優しい優しい優しい\n最後に一言→なーさん好き〜(´・_・`)♡GEM現場おいでね(´・_・`)♡\n\n#ふぁぼした人にやる",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
+ "in_reply_to_screen_name": "nasan_arai"
+ },
+ {
"entities": {
- "symbols": [],
+ "hashtags": [],
+ "user_mentions": [],
"urls": [],
- "user_mentions": [
- {
- "indices": [
- 0,
- 11
- ],
- "id": 1717603286,
- "id_str": "1717603286",
- "screen_name": "nasan_arai",
- "name": "なーさん"
- }
- ],
- "hashtags": [
- {
- "indices": [
- 128,
- 138
- ],
- "text": "ふぁぼした人にやる"
- }
- ]
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "\"ソードマスター\"剣聖カミイズミ (CV:緑川光)-「ソードマスター」のアスタリスク所持者\n第一師団団長にして「剣聖」の称号を持つ剣士。イデアの剣の師匠。 \n敵味方からも尊敬される一流の武人。",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:02 +0000 2014",
- "in_reply_to_user_id": 1717603286,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874871218225152,
+ "source": "twittbot.net",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1435517814,
- "followers_count": 1066,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分なりに生きる人、最後まであきらめないの。でも、フォローありがとう…。@ringo_BDFFLOVE ←は、妹です。時々、会話します。「現在BOTで、BDFFのこと呟くよ!」夜は、全滅 「BDFFプレイ中」詳しくは、ツイプロみてください!(絶対)",
- "id_str": "1435517814",
- "default_profile_image": false,
- "location": "ルクセンダルクorリングアベルさんの隣",
- "time_zone": "Irkutsk",
- "profile_image_url": "http://pbs.twimg.com/profile_images/505696320380612608/qvaxb_zx_normal.png",
- "listed_count": 6,
"entities": {
+ "description": {
+ "urls": []
+ },
"url": {
"urls": [
{
+ "display_url": "twpf.jp/BDFF_LOVE",
+ "url": "http://t.co/5R4dzpbWX2",
+ "expanded_url": "http://twpf.jp/BDFF_LOVE",
"indices": [
0,
22
- ],
- "display_url": "twpf.jp/BDFF_LOVE",
- "url": "http://t.co/5R4dzpbWX2",
- "expanded_url": "http://twpf.jp/BDFF_LOVE"
+ ]
}
- ]
- },
- "description": {
- "urls": []
+ ]
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/505696320380612608/qvaxb_zx_normal.png",
"name": "俺、関係ないよ?",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1799,
+ "time_zone": "Irkutsk",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Fri May 17 12:33:23 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/505696320380612608/qvaxb_zx_normal.png",
"geo_enabled": true,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/1435517814/1409401948",
- "protected": false,
- "statuses_count": 6333,
- "friends_count": 1799,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": "http://t.co/5R4dzpbWX2",
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "1435517814",
+ "listed_count": 6,
+ "location": "ルクセンダルクorリングアベルさんの隣",
"screen_name": "BDFF_LOVE",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分なりに生きる人、最後まであきらめないの。でも、フォローありがとう…。@ringo_BDFFLOVE ←は、妹です。時々、会話します。「現在BOTで、BDFFのこと呟くよ!」夜は、全滅 「BDFFプレイ中」詳しくは、ツイプロみてください!(絶対)",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/505696320380612608/qvaxb_zx_normal.png",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 6333,
+ "followers_count": 1066,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1435517814/1409401948",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 1435517814,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 1431,
- "verified": false
+ "url": "http://t.co/5R4dzpbWX2"
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 0,
+ "in_reply_to_status_id_str": null,
+ "id": 505874871218225152,
+ "retweeted": false,
"id_str": "505874871218225152",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "\"ソードマスター\"剣聖カミイズミ (CV:緑川光)-「ソードマスター」のアスタリスク所持者\n第一師団団長にして「剣聖」の称号を持つ剣士。イデアの剣の師匠。 \n敵味方からも尊敬される一流の武人。",
- "lang": "ja",
- "source": "twittbot.net",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "闇「リンと付き合うに当たって歳の差以外にもいろいろ壁があったんだよ。愛し隊の妨害とか風紀厨の生徒会長とか…」\n一号「リンちゃんを泣かせたらシメるかんね!」\n二号「リンちゃんにやましい事したら×す…」\n執行部「不純な交際は僕が取り締まろうじゃないか…」\n闇「(消される)」",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:02 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874871130136576,
+ "source": "twittbot.net",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2386208737,
- "followers_count": 7,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "ProjectDIVAのモジュール・ストレンジダーク×鏡音リンFutureStyleの自己満足非公式Bot マセレン仕様。CP要素あります。",
- "id_str": "2386208737",
- "default_profile_image": false,
- "location": "DIVAルーム",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/443948925351755776/6rmljL5C_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/443948925351755776/6rmljL5C_normal.jpeg",
"name": "闇未来Bot",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 2,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Thu Mar 13 02:58:09 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/443948925351755776/6rmljL5C_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2386208737/1396259004",
- "protected": false,
- "statuses_count": 4876,
- "friends_count": 2,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2386208737",
+ "listed_count": 0,
+ "location": "DIVAルーム",
"screen_name": "StxRinFbot",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ProjectDIVAのモジュール・ストレンジダーク×鏡音リンFutureStyleの自己満足非公式Bot マセレン仕様。CP要素あります。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/443948925351755776/6rmljL5C_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 4876,
+ "followers_count": 7,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2386208737/1396259004",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2386208737,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874871130136576",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "闇「リンと付き合うに当たって歳の差以外にもいろいろ壁があったんだよ。愛し隊の妨害とか風紀厨の生徒会長とか…」\n一号「リンちゃんを泣かせたらシメるかんね!」\n二号「リンちゃんにやましい事したら×す…」\n執行部「不純な交際は僕が取り締まろうじゃないか…」\n闇「(消される)」",
- "lang": "ja",
- "source": "twittbot.net",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 0,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:02 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874871130136576,
+ "retweeted": false,
+ "id_str": "505874871130136576",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874870933016576,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:02 +0000 2014",
+ "source": "絶品!!スイーツ天国",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2725681663,
- "followers_count": 401,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "美味しそうなスイーツって、見てるだけで幸せな気分になれますね♪\r\nそんな素敵なスイーツに出会いたいです。\r\n食べたいと思ったら是非 RT & フォローお願いします。",
- "id_str": "2725681663",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/499099533507178496/g5dNpArt_normal.jpeg",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/499099533507178496/g5dNpArt_normal.jpeg",
"name": "絶品!!スイーツ天国",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1877,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 12 07:43:52 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/499099533507178496/g5dNpArt_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2725681663/1407829743",
- "protected": false,
- "statuses_count": 554,
- "friends_count": 1877,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2725681663",
+ "listed_count": 1,
+ "location": "",
"screen_name": "suitestengoku",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "美味しそうなスイーツって、見てるだけで幸せな気分になれますね♪\r\nそんな素敵なスイーツに出会いたいです。\r\n食べたいと思ったら是非 RT & フォローお願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/499099533507178496/g5dNpArt_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 554,
+ "followers_count": 401,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2725681663/1407829743",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2725681663,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874870933016576",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "絶品!!スイーツ天国",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:02 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874870933016576,
+ "retweeted": false,
+ "id_str": "505874870933016576",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
},
- "id": 505874870148669440,
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:02 +0000 2014",
+ "source": "電車厳禁!!おもしろ話",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2699667800,
- "followers_count": 461,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "日常のオモシロくて笑える場面を探します♪\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
- "id_str": "2699667800",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/495400387961036800/BBMb_hcG_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/495400387961036800/BBMb_hcG_normal.jpeg",
"name": "電車厳禁!!おもしろ話w",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1919,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sat Aug 02 02:16:32 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/495400387961036800/BBMb_hcG_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2699667800/1406947654",
- "protected": false,
- "statuses_count": 728,
- "friends_count": 1919,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2699667800",
+ "listed_count": 0,
+ "location": "",
"screen_name": "dengeki_omoro",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "日常のオモシロくて笑える場面を探します♪\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/495400387961036800/BBMb_hcG_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 728,
+ "followers_count": 461,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2699667800/1406947654",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2699667800,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874870148669440",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "電車厳禁!!おもしろ話",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:02 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874870148669440,
+ "retweeted": false,
+ "id_str": "505874870148669440",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
- },
- "id": 505874869339189249,
- "user": {
- "is_translator": false,
- "id": 2695745652,
- "followers_count": 314,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "知ってると使えるランキングを探そう。\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
- "id_str": "2695745652",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/494844659856728064/xBQfnm5J_normal.jpeg",
- "listed_count": 1,
- "entities": {
- "description": {
- "urls": []
- }
- },
- "name": "笑えるwwランキング",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Thu Jul 31 13:51:57 +0000 2014",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2695745652/1406815103",
- "protected": false,
- "statuses_count": 737,
- "friends_count": 1943,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "wara_runk",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/494844659856728064/xBQfnm5J_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874869339189249",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "笑えるwwランキング2",
- "truncated": false,
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
"indices": [
3,
19
],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
"name": "幸せの☆お守り"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:02 +0000 2014",
- "in_reply_to_user_id": null,
+ "source": "笑えるwwランキング2",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/494844659856728064/xBQfnm5J_normal.jpeg",
+ "name": "笑えるwwランキング",
+ "friends_count": 1943,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Thu Jul 31 13:51:57 +0000 2014",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/494844659856728064/xBQfnm5J_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "2695745652",
+ "listed_count": 1,
+ "location": "",
+ "screen_name": "wara_runk",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "知ってると使えるランキングを探そう。\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 737,
+ "followers_count": 314,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2695745652/1406815103",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2695745652,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
+ },
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874869339189249,
+ "retweeted": false,
+ "id_str": "505874869339189249",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874868533854209,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:02 +0000 2014",
+ "source": "スニーカー大好き★図鑑",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2707963890,
- "followers_count": 394,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "スニーカー好きを見つけて仲間になろう♪\r\n気に入ったら RT & 相互フォローで みなさん、お願いします♪",
- "id_str": "2707963890",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/496474952631996416/f0C_u3_u_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/496474952631996416/f0C_u3_u_normal.jpeg",
"name": "スニーカー大好き★図鑑",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1891,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 05 01:54:28 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/496474952631996416/f0C_u3_u_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2707963890/1407203869",
- "protected": false,
- "statuses_count": 642,
- "friends_count": 1891,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2707963890",
+ "listed_count": 0,
+ "location": "",
"screen_name": "sunikar_daisuki",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "スニーカー好きを見つけて仲間になろう♪\r\n気に入ったら RT & 相互フォローで みなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/496474952631996416/f0C_u3_u_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 642,
+ "followers_count": 394,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2707963890/1407203869",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2707963890,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
+ "in_reply_to_status_id_str": null,
+ "id": 505874868533854209,
+ "retweeted": false,
"id_str": "505874868533854209",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "スニーカー大好き★図鑑",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "BelloTexto",
+ "id": 833083404,
+ "id_str": "833083404",
"indices": [
- 3,
- 19
+ 1,
+ 12
],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
+ "name": "Indirectas... ✉"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:02 +0000 2014",
+ "truncated": false,
"in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874867997380608,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "\"@BelloTexto: ¿Quieres ser feliz? \n一\"No stalkees\" \n一\"No stalkees\" \n一\"No stalkees\" \n一\"No stalkees\" \n一\"No stalkees\" \n一\"No stalkees\".\"",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "zh"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:01 +0000 2014",
+ "source": "Twitter for Android",
+ "lang": "zh",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2249378935,
- "followers_count": 120,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "cambiando la vida de las personas.",
- "id_str": "2249378935",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/505093371665604608/K0x_LV2y_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/505093371665604608/K0x_LV2y_normal.jpeg",
"name": "Maggie Becerril ",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 391,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Mon Dec 16 21:56:49 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/505093371665604608/K0x_LV2y_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2249378935/1409258479",
- "protected": false,
- "statuses_count": 1657,
- "friends_count": 391,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "es",
+ "id_str": "2249378935",
+ "listed_count": 0,
+ "location": "",
"screen_name": "maggdesie",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "cambiando la vida de las personas.",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/505093371665604608/K0x_LV2y_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 1657,
+ "followers_count": 120,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "es",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2249378935/1409258479",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2249378935,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 314,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874867997380608",
- "geo": null,
- "metadata": {
- "iso_language_code": "zh",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "\"@BelloTexto: ¿Quieres ser feliz? \n一\"No stalkees\" \n一\"No stalkees\" \n一\"No stalkees\" \n一\"No stalkees\" \n一\"No stalkees\" \n一\"No stalkees\".\"",
- "lang": "zh",
- "source": "Twitter for Android",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 1,
- 12
- ],
- "id": 833083404,
- "id_str": "833083404",
- "screen_name": "BelloTexto",
- "name": "Indirectas... ✉"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 0,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:01 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874867997380608,
+ "retweeted": false,
+ "id_str": "505874867997380608",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
- },
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
},
- "id": 505874867720183808,
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:01 +0000 2014",
+ "source": "ザ・異性の裏の顔",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2719746578,
- "followers_count": 238,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "異性について少し学ぶことで、必然的にモテるようになる!? 相手を理解することで見えてくるもの「それは・・・●●」 いい内容だと思ったら RT & フォローもお願いします。",
- "id_str": "2719746578",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/498157077726900224/tW8q4di__normal.png",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/498157077726900224/tW8q4di__normal.png",
"name": "ザ・異性の裏の顔",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1922,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sat Aug 09 17:18:43 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/498157077726900224/tW8q4di__normal.png",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2719746578/1407604947",
- "protected": false,
- "statuses_count": 532,
- "friends_count": 1922,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2719746578",
+ "listed_count": 0,
+ "location": "",
"screen_name": "iseiuragao",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "異性について少し学ぶことで、必然的にモテるようになる!? 相手を理解することで見えてくるもの「それは・・・●●」 いい内容だと思ったら RT & フォローもお願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/498157077726900224/tW8q4di__normal.png",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 532,
+ "followers_count": 238,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2719746578/1407604947",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2719746578,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874867720183808",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "ザ・異性の裏の顔",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:01 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874867720183808,
+ "retweeted": false,
+ "id_str": "505874867720183808",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874866910687233,
- "user": {
- "is_translator": false,
- "id": 2744054334,
- "followers_count": 45,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "「おお~っ!いいね~」って、思わず言ってしまう、美女を見つけます☆ \r\nタイプだと思ったら RT & 相互フォローでお願いします♪",
- "id_str": "2744054334",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501604413312491520/GP66eKWr_normal.jpeg",
- "listed_count": 0,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:01 +0000 2014",
+ "source": "超w美女☆アルバム",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501604413312491520/GP66eKWr_normal.jpeg",
"name": "超w美女☆アルバム",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 966,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 05:36:48 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501604413312491520/GP66eKWr_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744054334/1408426814",
- "protected": false,
- "statuses_count": 352,
- "friends_count": 966,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2744054334",
+ "listed_count": 0,
+ "location": "",
"screen_name": "bijyoalbum",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "「おお~っ!いいね~」って、思わず言ってしまう、美女を見つけます☆ \r\nタイプだと思ったら RT & 相互フォローでお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501604413312491520/GP66eKWr_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 352,
+ "followers_count": 45,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744054334/1408426814",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2744054334,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874866910687233",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "超w美女☆アルバム",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:01 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874866910687233,
+ "retweeted": false,
+ "id_str": "505874866910687233",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874866105376769,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:01 +0000 2014",
+ "source": "男に見せない女子の裏生態",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2744261238,
- "followers_count": 203,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "男の知らない女子ならではのあるある☆ \r\nそんな生々しい女子の生態をつぶやきます。 \r\nわかる~って人は RT & フォローでお願いします♪",
- "id_str": "2744261238",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501641354804346880/Uh1-n1LD_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501641354804346880/Uh1-n1LD_normal.jpeg",
"name": "男に見せない女子の裏生態",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 967,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 08:01:28 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501641354804346880/Uh1-n1LD_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744261238/1408435630",
- "protected": false,
- "statuses_count": 348,
- "friends_count": 967,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2744261238",
+ "listed_count": 0,
+ "location": "",
"screen_name": "jyoshiuraseitai",
- "default_profile": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "男の知らない女子ならではのあるある☆ \r\nそんな生々しい女子の生態をつぶやきます。 \r\nわかる~って人は RT & フォローでお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 348,
+ "followers_count": 203,
"profile_use_background_image": true,
- "profile_text_color": "333333",
+ "default_profile_image": false,
"following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501641354804346880/Uh1-n1LD_normal.jpeg",
- "profile_background_tile": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744261238/1408435630",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2744261238,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874866105376769",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "男に見せない女子の裏生態",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:01 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874866105376769,
+ "retweeted": false,
+ "id_str": "505874866105376769",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874865354584064,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:01 +0000 2014",
+ "source": "驚きの動物たちの生態",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2759403146,
- "followers_count": 67,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "「おお~っ」と 言われるような、動物の生態をツイートします♪ \r\n知っていると、あなたも人気者に!? \r\nおもしろかったら RT & フォローを、お願いします。",
- "id_str": "2759403146",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/503220468128567296/Z8mGDIBS_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503220468128567296/Z8mGDIBS_normal.jpeg",
"name": "驚きの動物たちの生態",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 954,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sat Aug 23 16:39:31 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503220468128567296/Z8mGDIBS_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2759403146/1408812130",
- "protected": false,
- "statuses_count": 219,
- "friends_count": 954,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2759403146",
+ "listed_count": 0,
+ "location": "",
"screen_name": "soubutu_seitai",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "「おお~っ」と 言われるような、動物の生態をツイートします♪ \r\n知っていると、あなたも人気者に!? \r\nおもしろかったら RT & フォローを、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503220468128567296/Z8mGDIBS_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874865354584064",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "驚きの動物たちの生態",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "statuses_count": 219,
+ "followers_count": 67,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2759403146/1408812130",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2759403146,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:01 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874865354584064,
+ "retweeted": false,
+ "id_str": "505874865354584064",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874864603820032,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:01 +0000 2014",
+ "source": "モテ女子★ファションの秘密",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2706659820,
- "followers_count": 217,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "オシャレかわいい♥モテ度UPの注目アイテムを見つけます。\r\n気に入ったら RT & 相互フォローで みなさん、お願いします♪",
- "id_str": "2706659820",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/496303370936668161/s7xP8rTy_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/496303370936668161/s7xP8rTy_normal.jpeg",
"name": "モテ女子★ファションの秘密",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1806,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Mon Aug 04 14:30:24 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/496303370936668161/s7xP8rTy_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2706659820/1407163059",
- "protected": false,
- "statuses_count": 682,
- "friends_count": 1806,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2706659820",
+ "listed_count": 0,
+ "location": "",
"screen_name": "mote_woman",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "オシャレかわいい♥モテ度UPの注目アイテムを見つけます。\r\n気に入ったら RT & 相互フォローで みなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/496303370936668161/s7xP8rTy_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 682,
+ "followers_count": 217,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2706659820/1407163059",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2706659820,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874864603820032",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "モテ女子★ファションの秘密",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:01 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874864603820032,
+ "retweeted": false,
+ "id_str": "505874864603820032",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874863874007040,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:00 +0000 2014",
+ "source": "男女の違いを解明する",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2761896468,
- "followers_count": 82,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "意外と理解できていない男女それぞれの事情。 \r\n「えっ マジで!?」と驚くような、男女の習性をつぶやきます♪ ためになったら、是非 RT & フォローで、お願いします。",
- "id_str": "2761896468",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/503479057380413441/zDLu5Z9o_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503479057380413441/zDLu5Z9o_normal.jpeg",
"name": "男女の違いを解明する",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 992,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 24 09:47:44 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503479057380413441/zDLu5Z9o_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2761896468/1408873803",
- "protected": false,
- "statuses_count": 237,
- "friends_count": 992,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2761896468",
+ "listed_count": 0,
+ "location": "",
"screen_name": "danjyonotigai1",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "意外と理解できていない男女それぞれの事情。 \r\n「えっ マジで!?」と驚くような、男女の習性をつぶやきます♪ ためになったら、是非 RT & フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503479057380413441/zDLu5Z9o_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 237,
+ "followers_count": 82,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2761896468/1408873803",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2761896468,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874863874007040",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "男女の違いを解明する",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:00 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874863874007040,
+ "retweeted": false,
+ "id_str": "505874863874007040",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "url": null
},
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
- },
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874862900924416,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:00 +0000 2014",
+ "source": "神レベル★極限の発想",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2744950735,
- "followers_count": 84,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "見ているだけで、本気がビシバシ伝わってきます! \r\n人生のヒントになるような、そんな究極の発想を集めています。 \r\nいいなと思ったら RT & 相互フォローで、お願いします♪",
- "id_str": "2744950735",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501725053189226496/xZNOTYz2_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501725053189226496/xZNOTYz2_normal.jpeg",
"name": "神レベル★極限の発想",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 992,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 13:36:05 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501725053189226496/xZNOTYz2_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744950735/1408455571",
- "protected": false,
- "statuses_count": 343,
- "friends_count": 992,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2744950735",
+ "listed_count": 0,
+ "location": "",
"screen_name": "kamihassou",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "見ているだけで、本気がビシバシ伝わってきます! \r\n人生のヒントになるような、そんな究極の発想を集めています。 \r\nいいなと思ったら RT & 相互フォローで、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501725053189226496/xZNOTYz2_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 343,
+ "followers_count": 84,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744950735/1408455571",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2744950735,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
+ "in_reply_to_status_id_str": null,
+ "id": 505874862900924416,
+ "retweeted": false,
"id_str": "505874862900924416",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "神レベル★極限の発想",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "kaoritoxx",
+ "id": 796000214,
+ "id_str": "796000214",
"indices": [
- 3,
- 19
+ 0,
+ 10
],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
+ "name": "かおちゃん"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": 796000214,
"place": null,
+ "in_reply_to_user_id_str": "796000214",
+ "text": "@kaoritoxx そうよ!あたしはそう思うようにしておる。いま職場一やけとる気がする(°_°)!満喫幸せ焼け!!wあー、なるほどね!毎回そうだよね!ティアラちゃんみにいってるもんね♡五月と九月恐ろしい、、、\nハリポタエリアはいった??",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:00 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874862397591552,
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2256249487,
- "followers_count": 415,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "ONE PIECE愛しすぎて今年23ちゃい(歴14年目)ゾロ様に一途だったのにロー、このやろー。ロビンちゃんが幸せになればいい。ルフィは無条件にすき。ゾロビン、ローロビ、ルロビ♡usj、声優さん、コナン、進撃、クレしん、H x Hも好き♩",
- "id_str": "2256249487",
- "default_profile_image": false,
- "location": "どえすえろぉたんの助手兼ね妹(願望)",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501686340564418561/hMQFN4vD_normal.jpeg",
- "listed_count": 3,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501686340564418561/hMQFN4vD_normal.jpeg",
"name": "はあちゃん@海賊同盟中",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 384,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sat Dec 21 09:37:25 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501686340564418561/hMQFN4vD_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2256249487/1399987924",
- "protected": false,
- "statuses_count": 9636,
- "friends_count": 384,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2256249487",
+ "listed_count": 3,
+ "location": "どえすえろぉたんの助手兼ね妹(願望)",
"screen_name": "onepiece_24",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501686340564418561/hMQFN4vD_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 1603,
- "verified": false
- },
- "in_reply_to_user_id_str": "796000214",
- "in_reply_to_screen_name": "kaoritoxx",
- "favorite_count": 0,
- "id_str": "505874862397591552",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "@kaoritoxx そうよ!あたしはそう思うようにしておる。いま職場一やけとる気がする(°_°)!満喫幸せ焼け!!wあー、なるほどね!毎回そうだよね!ティアラちゃんみにいってるもんね♡五月と九月恐ろしい、、、\nハリポタエリアはいった??",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 0,
- 10
- ],
- "id": 796000214,
- "id_str": "796000214",
- "screen_name": "kaoritoxx",
- "name": "かおちゃん"
- }
- ],
- "hashtags": []
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ONE PIECE愛しすぎて今年23ちゃい(歴14年目)ゾロ様に一途だったのにロー、このやろー。ロビンちゃんが幸せになればいい。ルフィは無条件にすき。ゾロビン、ローロビ、ルロビ♡usj、声優さん、コナン、進撃、クレしん、H x Hも好き♩",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 9636,
+ "followers_count": 415,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2256249487/1399987924",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2256249487,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 1603,
+ "url": null
},
- "retweet_count": 0,
"in_reply_to_status_id": 505838547308277761,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:00 +0000 2014",
- "in_reply_to_user_id": 796000214,
+ "retweet_count": 0,
"in_reply_to_status_id_str": "505838547308277761",
- "favorited": false
+ "id": 505874862397591552,
+ "retweeted": false,
+ "id_str": "505874862397591552",
+ "geo": null,
+ "in_reply_to_screen_name": "kaoritoxx"
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
+ "url": null
},
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
- },
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874861973991424,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:00 +0000 2014",
+ "source": "恋愛仙人",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2698885082,
- "followers_count": 618,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "豊富でステキな恋愛経験を、シェアしましょう。\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
- "id_str": "2698885082",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/495272204641132544/GNA18aOg_normal.jpeg",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/495272204641132544/GNA18aOg_normal.jpeg",
"name": "恋愛仙人",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1847,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Fri Aug 01 18:09:38 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/495272204641132544/GNA18aOg_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2698885082/1406917096",
- "protected": false,
- "statuses_count": 726,
- "friends_count": 1847,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2698885082",
+ "listed_count": 1,
+ "location": "",
"screen_name": "renai_sennin",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "豊富でステキな恋愛経験を、シェアしましょう。\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/495272204641132544/GNA18aOg_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 726,
+ "followers_count": 618,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2698885082/1406917096",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2698885082,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
+ "in_reply_to_status_id_str": null,
+ "id": 505874861973991424,
+ "retweeted": false,
"id_str": "505874861973991424",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "恋愛仙人",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "itsukibot_",
+ "id": 141170845,
+ "id_str": "141170845",
"indices": [
- 3,
- 19
+ 0,
+ 11
],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
+ "name": "前田一稀"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": 141170845,
+ "place": null,
+ "in_reply_to_user_id_str": "141170845",
+ "text": "@itsukibot_ 一稀の俺のソーセージをペロペロする音はデカイ",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
"coordinates": null,
- "place": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:00 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874861881700353,
+ "source": "jigtwi",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2184752048,
- "followers_count": 15,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "",
- "id_str": "2184752048",
- "default_profile_image": true,
- "location": "",
- "time_zone": "Irkutsk",
- "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
"name": "アンドー",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 24,
+ "time_zone": "Irkutsk",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Sat Nov 09 17:42:22 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
"geo_enabled": false,
- "protected": false,
- "statuses_count": 21070,
- "friends_count": 24,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2184752048",
+ "listed_count": 0,
+ "location": "",
"screen_name": "55dakedayo",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 21070,
+ "followers_count": 15,
+ "profile_use_background_image": true,
+ "default_profile_image": true,
+ "lang": "ja",
+ "following": false,
+ "default_profile": true,
+ "is_translator": false,
+ "profile_link_color": "0084B4",
+ "profile_sidebar_border_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2184752048,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 37249,
- "verified": false
- },
- "in_reply_to_user_id_str": "141170845",
- "in_reply_to_screen_name": "itsukibot_",
- "favorite_count": 0,
- "id_str": "505874861881700353",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "@itsukibot_ 一稀の俺のソーセージをペロペロする音はデカイ",
- "lang": "ja",
- "source": "jigtwi",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 0,
- 11
- ],
- "id": 141170845,
- "id_str": "141170845",
- "screen_name": "itsukibot_",
- "name": "前田一稀"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 0,
"in_reply_to_status_id": 505871017428795392,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:00 +0000 2014",
- "in_reply_to_user_id": 141170845,
+ "retweet_count": 0,
"in_reply_to_status_id_str": "505871017428795392",
- "favorited": false
+ "id": 505874861881700353,
+ "retweeted": false,
+ "id_str": "505874861881700353",
+ "geo": null,
+ "in_reply_to_screen_name": "itsukibot_"
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
- },
- "id": 505874861185437697,
- "user": {
- "is_translator": false,
- "id": 2706951979,
- "followers_count": 300,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "誰にでも記憶に残る、ドラマの名場面があると思います。そんな感動のストーリーを、もう一度わかちあいたいです。\r\n「これ知ってる!」とか「あ~懐かしい」と思ったら RT & 相互フォローでみなさん、お願いします♪",
- "id_str": "2706951979",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/496335892152209408/fKzb8Nv3_normal.jpeg",
- "listed_count": 0,
- "entities": {
- "description": {
- "urls": []
- }
- },
- "name": "あの伝説の名ドラマ&名場面",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Mon Aug 04 16:38:25 +0000 2014",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2706951979/1407170704",
- "protected": false,
- "statuses_count": 694,
- "friends_count": 1886,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
- "screen_name": "densetunodorama",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/496335892152209408/fKzb8Nv3_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874861185437697",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "あの伝説の名ドラマ&名場面",
- "truncated": false,
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
+ },
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
"indices": [
3,
19
],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
"name": "幸せの☆お守り"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:29:00 +0000 2014",
- "in_reply_to_user_id": null,
+ "source": "あの伝説の名ドラマ&名場面",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/496335892152209408/fKzb8Nv3_normal.jpeg",
+ "name": "あの伝説の名ドラマ&名場面",
+ "friends_count": 1886,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Mon Aug 04 16:38:25 +0000 2014",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/496335892152209408/fKzb8Nv3_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "2706951979",
+ "listed_count": 0,
+ "location": "",
+ "screen_name": "densetunodorama",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "誰にでも記憶に残る、ドラマの名場面があると思います。そんな感動のストーリーを、もう一度わかちあいたいです。\r\n「これ知ってる!」とか「あ~懐かしい」と思ったら RT & 相互フォローでみなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 694,
+ "followers_count": 300,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2706951979/1407170704",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 2706951979,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
+ },
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874861185437697,
+ "retweeted": false,
+ "id_str": "505874861185437697",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874860447260672,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:29:00 +0000 2014",
+ "source": "マジで食べたい♥ケーキ特集",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2724328646,
- "followers_count": 158,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "女性の目線から見た、美味しそうなケーキを探し求めています。\r\n見てるだけで、あれもコレも食べたくなっちゃう♪\r\n美味しそうだと思ったら、是非 RT & フォローお願いします。",
- "id_str": "2724328646",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/498881289844293632/DAa9No9M_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/498881289844293632/DAa9No9M_normal.jpeg",
"name": "マジで食べたい♥ケーキ特集",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1907,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Mon Aug 11 17:15:22 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/498881289844293632/DAa9No9M_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2724328646/1407777704",
- "protected": false,
- "statuses_count": 493,
- "friends_count": 1907,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2724328646",
+ "listed_count": 0,
+ "location": "",
"screen_name": "tabetaicake1",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "女性の目線から見た、美味しそうなケーキを探し求めています。\r\n見てるだけで、あれもコレも食べたくなっちゃう♪\r\n美味しそうだと思ったら、是非 RT & フォローお願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/498881289844293632/DAa9No9M_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 493,
+ "followers_count": 158,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2724328646/1407777704",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2724328646,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874860447260672",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "マジで食べたい♥ケーキ特集",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:29:00 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874860447260672,
+ "retweeted": false,
+ "id_str": "505874860447260672",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874859662925824,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:28:59 +0000 2014",
+ "source": "アディダス★マニア",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2704003662,
- "followers_count": 340,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "素敵なアディダスのアイテムを見つけたいです♪\r\n気に入ってもらえたららRT & 相互フォローで みなさん、お願いします♪",
- "id_str": "2704003662",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/495911561781727235/06QAMVrR_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/495911561781727235/06QAMVrR_normal.jpeg",
"name": "アディダス★マニア",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1851,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 03 12:26:37 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/495911561781727235/06QAMVrR_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2704003662/1407069046",
- "protected": false,
- "statuses_count": 734,
- "friends_count": 1851,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2704003662",
+ "listed_count": 0,
+ "location": "",
"screen_name": "adi_mania11",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "素敵なアディダスのアイテムを見つけたいです♪\r\n気に入ってもらえたららRT & 相互フォローで みなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/495911561781727235/06QAMVrR_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 734,
+ "followers_count": 340,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2704003662/1407069046",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2704003662,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874859662925824",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "アディダス★マニア",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:28:59 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874859662925824,
+ "retweeted": false,
+ "id_str": "505874859662925824",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874858920513537,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:28:59 +0000 2014",
+ "source": "萌えペット大好き",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2719061228,
- "followers_count": 289,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "かわいいペットを見るのが趣味です♥そんな私と一緒にいやされたい人いませんか?かわいいと思ったら RT & フォローもお願いします♪",
- "id_str": "2719061228",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/498051549537386496/QizThq7N_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/498051549537386496/QizThq7N_normal.jpeg",
"name": "萌えペット大好き",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1812,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sat Aug 09 10:20:25 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/498051549537386496/QizThq7N_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2719061228/1407581287",
- "protected": false,
- "statuses_count": 632,
- "friends_count": 1812,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2719061228",
+ "listed_count": 0,
+ "location": "",
"screen_name": "moe_pet1",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "かわいいペットを見るのが趣味です♥そんな私と一緒にいやされたい人いませんか?かわいいと思ったら RT & フォローもお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/498051549537386496/QizThq7N_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 632,
+ "followers_count": 289,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2719061228/1407581287",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2719061228,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874858920513537",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "萌えペット大好き",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:28:59 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874858920513537,
+ "retweeted": false,
+ "id_str": "505874858920513537",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
- "user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874858115219456,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:28:59 +0000 2014",
+ "source": "恋愛の教科書 ",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2744344514,
- "followers_count": 124,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "もっと早く知っとくべきだった~!知っていればもっと上手くいく♪ \r\n今すぐ役立つ恋愛についての雑学やマメ知識をお届けします。 \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2744344514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501655512018997248/7SznYGWi_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501655512018997248/7SznYGWi_normal.jpeg",
"name": "恋愛の教科書",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 955,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 08:32:45 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501655512018997248/7SznYGWi_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744344514/1408439001",
- "protected": false,
- "statuses_count": 346,
- "friends_count": 955,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2744344514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "renaikyoukasyo",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "もっと早く知っとくべきだった~!知っていればもっと上手くいく♪ \r\n今すぐ役立つ恋愛についての雑学やマメ知識をお届けします。 \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501655512018997248/7SznYGWi_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 346,
+ "followers_count": 124,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2744344514/1408439001",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2744344514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874858115219456",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "恋愛の教科書 ",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:28:59 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874858115219456,
+ "retweeted": false,
+ "id_str": "505874858115219456",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874857335074816,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:28:59 +0000 2014",
+ "source": "オモロすぎる★学生の日常",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2699365116,
- "followers_count": 289,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "楽しすぎる学生の日常を探していきます。\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
- "id_str": "2699365116",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/495353473886478336/S-4B_RVl_normal.jpeg",
- "listed_count": 2,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/495353473886478336/S-4B_RVl_normal.jpeg",
"name": "オモロすぎる★学生の日常",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1156,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Fri Aug 01 23:35:18 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/495353473886478336/S-4B_RVl_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2699365116/1406936481",
- "protected": false,
- "statuses_count": 770,
- "friends_count": 1156,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2699365116",
+ "listed_count": 2,
+ "location": "",
"screen_name": "omorogakusei",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "楽しすぎる学生の日常を探していきます。\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/495353473886478336/S-4B_RVl_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 770,
+ "followers_count": 289,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2699365116/1406936481",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2699365116,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874857335074816",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "オモロすぎる★学生の日常",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:28:59 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874857335074816,
+ "retweeted": false,
+ "id_str": "505874857335074816",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874856605257728,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:28:59 +0000 2014",
+ "source": "憧れの★インテリア図鑑",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2721907602,
- "followers_count": 298,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分の住む部屋もこんなふうにしてみたい♪ \r\nそんな素敵なインテリアを、日々探していますw \r\nいいなと思ったら RT & 相互フォローお願いします。",
- "id_str": "2721907602",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/498499374423343105/Wi_izHvT_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/498499374423343105/Wi_izHvT_normal.jpeg",
"name": "憧れの★インテリア図鑑",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1925,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Aug 10 15:59:13 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/498499374423343105/Wi_izHvT_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2721907602/1407686543",
- "protected": false,
- "statuses_count": 540,
- "friends_count": 1925,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2721907602",
+ "listed_count": 0,
+ "location": "",
"screen_name": "akogareinteria",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分の住む部屋もこんなふうにしてみたい♪ \r\nそんな素敵なインテリアを、日々探していますw \r\nいいなと思ったら RT & 相互フォローお願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/498499374423343105/Wi_izHvT_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 540,
+ "followers_count": 298,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2721907602/1407686543",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2721907602,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
+ "in_reply_to_status_id_str": null,
+ "id": 505874856605257728,
+ "retweeted": false,
"id_str": "505874856605257728",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "憧れの★インテリア図鑑",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
+ "hashtags": [
{
+ "text": "キンドル",
"indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
+ 50,
+ 55
+ ]
+ },
+ {
+ "text": "天冥の標VI宿怨PART1",
+ "indices": [
+ 56,
+ 70
+ ]
+ }
+ ],
+ "user_mentions": [],
+ "urls": [
+ {
+ "display_url": "j.mp/1kHBOym",
+ "url": "http://t.co/fXIgRt4ffH",
+ "expanded_url": "http://j.mp/1kHBOym",
+ "indices": [
+ 25,
+ 47
+ ]
}
],
- "hashtags": []
+ "symbols": []
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "天冥の標 VI 宿怨 PART1 / 小川 一水\nhttp://t.co/fXIgRt4ffH\n \n#キンドル #天冥の標VI宿怨PART1",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
"created_at": "Sun Aug 31 00:28:59 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874856089378816,
+ "source": "waromett",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1953404612,
- "followers_count": 16980,
- "profile_sidebar_fill_color": "99CC33",
- "description": "たのしいついーとしょうかい",
- "id_str": "1953404612",
- "default_profile_image": false,
- "location": "",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/378800000578908101/14c4744c7aa34b1f8bbd942b78e59385_normal.jpeg",
- "listed_count": 18,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "352726",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/378800000578908101/14c4744c7aa34b1f8bbd942b78e59385_normal.jpeg",
"name": "わろめっと",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif",
+ "friends_count": 16983,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Fri Oct 11 05:49:57 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000578908101/14c4744c7aa34b1f8bbd942b78e59385_normal.jpeg",
"geo_enabled": false,
- "protected": false,
- "statuses_count": 98655,
- "friends_count": 16983,
- "profile_link_color": "D02B55",
- "profile_background_color": "352726",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "829D5E",
- "lang": "ja",
+ "id_str": "1953404612",
+ "listed_count": 18,
+ "location": "",
"screen_name": "waromett",
- "default_profile": false,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "たのしいついーとしょうかい",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif",
"profile_text_color": "3E4415",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000578908101/14c4744c7aa34b1f8bbd942b78e59385_normal.jpeg",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 98655,
+ "followers_count": 16980,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "lang": "ja",
+ "following": false,
+ "default_profile": false,
+ "is_translator": false,
+ "profile_link_color": "D02B55",
+ "profile_sidebar_border_color": "829D5E",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif",
- "follow_request_sent": false,
+ "id": 1953404612,
+ "profile_sidebar_fill_color": "99CC33",
+ "verified": false,
"favourites_count": 3833,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 0,
+ "in_reply_to_status_id_str": null,
+ "id": 505874856089378816,
+ "retweeted": false,
"id_str": "505874856089378816",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "天冥の標 VI 宿怨 PART1 / 小川 一水\nhttp://t.co/fXIgRt4ffH\n \n#キンドル #天冥の標VI宿怨PART1",
- "lang": "ja",
- "source": "waromett",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [
- {
- "indices": [
- 25,
- 47
- ],
- "display_url": "j.mp/1kHBOym",
- "url": "http://t.co/fXIgRt4ffH",
- "expanded_url": "http://j.mp/1kHBOym"
- }
- ],
+ "hashtags": [],
"user_mentions": [],
- "hashtags": [
- {
- "indices": [
- 50,
- 55
- ],
- "text": "キンドル"
- },
+ "urls": [
{
+ "display_url": "bit.ly/1tOdNsI",
+ "url": "http://t.co/RNdqIHmTby",
+ "expanded_url": "http://bit.ly/1tOdNsI",
"indices": [
- 56,
- 70
- ],
- "text": "天冥の標VI宿怨PART1"
+ 114,
+ 136
+ ]
}
- ]
+ ],
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:28:59 +0000 2014",
+ "truncated": false,
"in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874855770599425,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "四川盆地江淮等地将有强降雨 开学日多地将有雨: 中新网8月31日电 据中央气象台消息,江淮东部、四川盆地东北部等地今天(31日)又将迎来一场暴雨或大暴雨天气。明天9月1日,是中小学生开学的日子。预计明天,内蒙古中部、... http://t.co/RNdqIHmTby",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "zh"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:28:58 +0000 2014",
+ "source": "twitterfeed",
+ "lang": "zh",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 402427654,
- "followers_count": 2429,
- "profile_sidebar_fill_color": "A0C5C7",
- "description": "中国的新闻,世界的新闻。",
- "id_str": "402427654",
- "default_profile_image": false,
- "location": "",
- "time_zone": "Alaska",
- "profile_image_url": "http://pbs.twimg.com/profile_images/2700523149/5597e347b2eb880425faef54287995f2_normal.jpeg",
- "listed_count": 29,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "709397",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/2700523149/5597e347b2eb880425faef54287995f2_normal.jpeg",
"name": "中国新闻",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif",
+ "friends_count": 15,
+ "time_zone": "Alaska",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": -28800,
"created_at": "Tue Nov 01 01:56:43 +0000 2011",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/2700523149/5597e347b2eb880425faef54287995f2_normal.jpeg",
"geo_enabled": false,
- "protected": false,
- "statuses_count": 84564,
- "friends_count": 15,
- "profile_link_color": "FF3300",
- "profile_background_color": "709397",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "86A4A6",
- "lang": "zh-cn",
+ "id_str": "402427654",
+ "listed_count": 29,
+ "location": "",
"screen_name": "zhongwenxinwen",
- "default_profile": false,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "中国的新闻,世界的新闻。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/2700523149/5597e347b2eb880425faef54287995f2_normal.jpeg",
+ "utc_offset": -28800,
"profile_background_tile": false,
+ "statuses_count": 84564,
+ "followers_count": 2429,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "lang": "zh-cn",
+ "following": false,
+ "default_profile": false,
+ "is_translator": false,
+ "profile_link_color": "FF3300",
+ "profile_sidebar_border_color": "86A4A6",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif",
- "follow_request_sent": false,
+ "id": 402427654,
+ "profile_sidebar_fill_color": "A0C5C7",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874855770599425",
- "geo": null,
- "metadata": {
- "iso_language_code": "zh",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "四川盆地江淮等地将有强降雨 开学日多地将有雨: 中新网8月31日电 据中央气象台消息,江淮东部、四川盆地东北部等地今天(31日)又将迎来一场暴雨或大暴雨天气。明天9月1日,是中小学生开学的日子。预计明天,内蒙古中部、... http://t.co/RNdqIHmTby",
- "lang": "zh",
- "source": "twitterfeed",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [
- {
- "indices": [
- 114,
- 136
- ],
- "display_url": "bit.ly/1tOdNsI",
- "url": "http://t.co/RNdqIHmTby",
- "expanded_url": "http://bit.ly/1tOdNsI"
- }
- ],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 0,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:28:58 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874855770599425,
+ "retweeted": false,
+ "id_str": "505874855770599425",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874854877200384,
- "user": {
- "is_translator": false,
- "id": 2700961603,
- "followers_count": 458,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "LDHファンは、全員仲間です♪\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
- "id_str": "2700961603",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/495578007298252800/FOZflgYu_normal.jpeg",
- "listed_count": 0,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:28:58 +0000 2014",
+ "source": "LDH ★大好き応援団",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/495578007298252800/FOZflgYu_normal.jpeg",
"name": "LDH ★大好き応援団",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1895,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sat Aug 02 14:23:46 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/495578007298252800/FOZflgYu_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2700961603/1406989928",
- "protected": false,
- "statuses_count": 735,
- "friends_count": 1895,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2700961603",
+ "listed_count": 0,
+ "location": "",
"screen_name": "LDH_daisuki1",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "LDHファンは、全員仲間です♪\r\n面白かったらRT & 相互フォローでみなさん、お願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/495578007298252800/FOZflgYu_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 735,
+ "followers_count": 458,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2700961603/1406989928",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2700961603,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874854877200384",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "LDH ★大好き応援団",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:28:58 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874854877200384,
+ "retweeted": false,
+ "id_str": "505874854877200384",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871615125491712,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:06 +0000 2014",
+ "source": "幸せの☆お守り",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2745121514,
- "followers_count": 213,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
- "id_str": "2745121514",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"name": "幸せの☆お守り",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 991,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Tue Aug 19 14:45:19 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
- "protected": false,
- "statuses_count": 349,
- "friends_count": 991,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2745121514",
+ "listed_count": 0,
+ "location": "",
"screen_name": "shiawaseomamori",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "自分が幸せだと周りも幸せにできる! \r\nそんな人生を精一杯生きるために必要な言葉をお届けします♪ \r\nいいなと思ったら RT & 相互フォローで、お願いします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 349,
+ "followers_count": 213,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2745121514/1408459730",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2745121514,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505871615125491712",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるのかもしれません。 by神様のカルテ、夏川草介",
- "lang": "ja",
- "source": "幸せの☆お守り",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 58,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:06 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 58,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871615125491712,
+ "retweeted": false,
+ "id_str": "505871615125491712",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874854147407872,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "shiawaseomamori",
+ "id": 2745121514,
+ "id_str": "2745121514",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "幸せの☆お守り"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:28:58 +0000 2014",
+ "source": "マジ!?怖いアニメ都市伝説",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2719489172,
- "followers_count": 377,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "あなたの知らない、怖すぎるアニメの都市伝説を集めています。\r\n「え~知らなかったよww]」って人は RT & フォローお願いします♪",
- "id_str": "2719489172",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/498118027322208258/h7XOTTSi_normal.jpeg",
- "listed_count": 1,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/498118027322208258/h7XOTTSi_normal.jpeg",
"name": "マジ!?怖いアニメ都市伝説",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 1911,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sat Aug 09 14:41:15 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/498118027322208258/h7XOTTSi_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2719489172/1407595513",
- "protected": false,
- "statuses_count": 536,
- "friends_count": 1911,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2719489172",
+ "listed_count": 1,
+ "location": "",
"screen_name": "anime_toshiden1",
- "default_profile": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "あなたの知らない、怖すぎるアニメの都市伝説を集めています。\r\n「え~知らなかったよww]」って人は RT & フォローお願いします♪",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 536,
+ "followers_count": 377,
"profile_use_background_image": true,
- "profile_text_color": "333333",
+ "default_profile_image": false,
"following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/498118027322208258/h7XOTTSi_normal.jpeg",
- "profile_background_tile": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2719489172/1407595513",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2719489172,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
+ "in_reply_to_status_id": null,
+ "retweet_count": 58,
+ "in_reply_to_status_id_str": null,
+ "id": 505874854147407872,
+ "retweeted": false,
"id_str": "505874854147407872",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @shiawaseomamori: 一に止まると書いて、正しいという意味だなんて、この年になるまで知りませんでした。 人は生きていると、前へ前へという気持ちばかり急いて、どんどん大切なものを置き去りにしていくものでしょう。本当に正しいことというのは、一番初めの場所にあるの…",
- "lang": "ja",
- "source": "マジ!?怖いアニメ都市伝説",
- "truncated": false,
+ "in_reply_to_screen_name": null
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
+ "hashtags": [],
"user_mentions": [
{
+ "screen_name": "vesperia1985",
+ "id": 2286548834,
+ "id_str": "2286548834",
"indices": [
- 3,
- 19
+ 0,
+ 13
],
- "id": 2745121514,
- "id_str": "2745121514",
- "screen_name": "shiawaseomamori",
- "name": "幸せの☆お守り"
+ "name": "ユーリ"
}
],
- "hashtags": []
+ "urls": [],
+ "symbols": []
},
- "retweet_count": 58,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": 2286548834,
"place": null,
+ "in_reply_to_user_id_str": "2286548834",
+ "text": "@vesperia1985 おはよー!\n今日までなのですよ…!!明日一生来なくていい",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
"created_at": "Sun Aug 31 00:28:58 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- {
- "id": 505874854134820864,
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2389045190,
- "followers_count": 67,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "サマーエルフです、りいこです。えるおくんラブです!随時ふれぼしゅ〜〜(っ˘ω˘c )*日常のどうでもいいことも呟いてますがよろしくね〜",
- "id_str": "2389045190",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/503906346815610881/BfSrCoBr_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/503906346815610881/BfSrCoBr_normal.jpeg",
"name": "りいこ",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 69,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Fri Mar 14 13:02:27 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/503906346815610881/BfSrCoBr_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2389045190/1409232058",
- "protected": false,
- "statuses_count": 324,
- "friends_count": 69,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2389045190",
+ "listed_count": 0,
+ "location": "",
"screen_name": "riiko_dq10",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "サマーエルフです、りいこです。えるおくんラブです!随時ふれぼしゅ〜〜(っ˘ω˘c )*日常のどうでもいいことも呟いてますがよろしくね〜",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/503906346815610881/BfSrCoBr_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 324,
+ "followers_count": 67,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2389045190/1409232058",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2389045190,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 120,
- "verified": false
+ "url": null
},
- "in_reply_to_user_id_str": "2286548834",
- "in_reply_to_screen_name": "vesperia1985",
- "favorite_count": 0,
+ "in_reply_to_status_id": 505868030329364480,
+ "retweet_count": 0,
+ "in_reply_to_status_id_str": "505868030329364480",
+ "id": 505874854134820864,
+ "retweeted": false,
"id_str": "505874854134820864",
"geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "@vesperia1985 おはよー!\n今日までなのですよ…!!明日一生来なくていい",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
+ "in_reply_to_screen_name": "vesperia1985"
+ },
+ {
"entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [
{
+ "display_url": "ift.tt/1kT55bk",
+ "url": "http://t.co/4hbyB1rbQ7",
+ "expanded_url": "http://ift.tt/1kT55bk",
"indices": [
- 0,
- 13
- ],
- "id": 2286548834,
- "id_str": "2286548834",
- "screen_name": "vesperia1985",
- "name": "ユーリ"
+ 116,
+ 138
+ ]
}
],
- "hashtags": []
+ "symbols": []
},
- "retweet_count": 0,
- "in_reply_to_status_id": 505868030329364480,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "【映画パンフレット】 永遠の0 (永遠のゼロ) 監督 山崎貴 キャスト 岡田准一、三浦春馬、井上真央東宝(2)11点の新品/中古品を見る: ¥ 500より\n(この商品の現在のランクに関する正式な情報については、アートフレーム... http://t.co/4hbyB1rbQ7",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
"created_at": "Sun Aug 31 00:28:58 +0000 2014",
- "in_reply_to_user_id": 2286548834,
- "in_reply_to_status_id_str": "505868030329364480",
- "favorited": false
- },
- {
- "id": 505874853778685952,
+ "source": "IFTTT",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1319883571,
- "followers_count": 677,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "家具(かぐ、Furniture)は、家財道具のうち家の中に据え置いて利用する比較的大型の道具類、または元々家に作り付けられている比較的大型の道具類をさす。なお、日本の建築基準法上は、作り付け家具は、建築確認及び完了検査の対象となるが、後から置かれるものについては対象外である。",
- "id_str": "1319883571",
- "default_profile_image": false,
- "location": "沖縄",
- "time_zone": "Irkutsk",
- "profile_image_url": "http://pbs.twimg.com/profile_images/3460466135/c67d9df9b760787b9ed284fe80b1dd31_normal.jpeg",
- "listed_count": 1,
"entities": {
+ "description": {
+ "urls": []
+ },
"url": {
"urls": [
{
+ "display_url": "astore.amazon.co.jp/furniturewood-…",
+ "url": "http://t.co/V4oyL0xtZk",
+ "expanded_url": "http://astore.amazon.co.jp/furniturewood-22",
"indices": [
0,
22
- ],
- "display_url": "astore.amazon.co.jp/furniturewood-…",
- "url": "http://t.co/V4oyL0xtZk",
- "expanded_url": "http://astore.amazon.co.jp/furniturewood-22"
+ ]
}
]
- },
- "description": {
- "urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/3460466135/c67d9df9b760787b9ed284fe80b1dd31_normal.jpeg",
"name": "森林木工家具製作所",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 743,
+ "time_zone": "Irkutsk",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Mon Apr 01 07:55:14 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/3460466135/c67d9df9b760787b9ed284fe80b1dd31_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/1319883571/1364804982",
- "protected": false,
- "statuses_count": 17210,
- "friends_count": 743,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": "http://t.co/V4oyL0xtZk",
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "1319883571",
+ "listed_count": 1,
+ "location": "沖縄",
"screen_name": "Furniturewood",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "家具(かぐ、Furniture)は、家財道具のうち家の中に据え置いて利用する比較的大型の道具類、または元々家に作り付けられている比較的大型の道具類をさす。なお、日本の建築基準法上は、作り付け家具は、建築確認及び完了検査の対象となるが、後から置かれるものについては対象外である。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/3460466135/c67d9df9b760787b9ed284fe80b1dd31_normal.jpeg",
+ "utc_offset": 32400,
"profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874853778685952",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "【映画パンフレット】 永遠の0 (永遠のゼロ) 監督 山崎貴 キャスト 岡田准一、三浦春馬、井上真央東宝(2)11点の新品/中古品を見る: ¥ 500より\n(この商品の現在のランクに関する正式な情報については、アートフレーム... http://t.co/4hbyB1rbQ7",
- "lang": "ja",
- "source": "IFTTT",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [
- {
- "indices": [
- 116,
- 138
- ],
- "display_url": "ift.tt/1kT55bk",
- "url": "http://t.co/4hbyB1rbQ7",
- "expanded_url": "http://ift.tt/1kT55bk"
- }
- ],
- "user_mentions": [],
- "hashtags": []
+ "statuses_count": 17210,
+ "followers_count": 677,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1319883571/1364804982",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 1319883571,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 0,
+ "url": "http://t.co/V4oyL0xtZk"
},
- "retweet_count": 0,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:28:58 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874853778685952,
+ "retweeted": false,
+ "id_str": "505874853778685952",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505858599411666944,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "ゴキブリは一世帯に平均して480匹いる。",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sat Aug 30 23:24:23 +0000 2014",
+ "source": "twittbot.net",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2243896200,
- "followers_count": 3288,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "知らぬが仏な情報をお伝えします。",
- "id_str": "2243896200",
- "default_profile_image": false,
- "location": "奈良・京都辺り",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/378800000866399372/ypy5NnPe_normal.png",
- "listed_count": 7,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/378800000866399372/ypy5NnPe_normal.png",
"name": "知らぬが仏bot",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 3482,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Fri Dec 13 13:16:35 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000866399372/ypy5NnPe_normal.png",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/2243896200/1386997755",
- "protected": false,
- "statuses_count": 1570,
- "friends_count": 3482,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2243896200",
+ "listed_count": 7,
+ "location": "奈良・京都辺り",
"screen_name": "siranuga_hotoke",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "知らぬが仏な情報をお伝えします。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000866399372/ypy5NnPe_normal.png",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 1570,
+ "followers_count": 3288,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2243896200/1386997755",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2243896200,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 0,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505858599411666944",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "ゴキブリは一世帯に平均して480匹いる。",
- "lang": "ja",
- "source": "twittbot.net",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [],
- "hashtags": []
+ "url": null
},
- "retweet_count": 1,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sat Aug 30 23:24:23 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 1,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505858599411666944,
+ "retweeted": false,
+ "id_str": "505858599411666944",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874852754907136,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "siranuga_hotoke",
+ "id": 2243896200,
+ "id_str": "2243896200",
+ "indices": [
+ 3,
+ 19
+ ],
+ "name": "知らぬが仏bot"
+ }
+ ],
+ "urls": [],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @siranuga_hotoke: ゴキブリは一世帯に平均して480匹いる。",
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "coordinates": null,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:28:58 +0000 2014",
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 413944345,
- "followers_count": 298,
- "profile_sidebar_fill_color": "F6FFD1",
- "description": "君の瞳にうつる僕に乾杯。",
- "id_str": "413944345",
- "default_profile_image": false,
- "location": "",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/500849752351600640/lMQqIzYj_normal.jpeg",
- "listed_count": 4,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "FFF04D",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/500849752351600640/lMQqIzYj_normal.jpeg",
"name": "泥酔イナバウアー",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000115928444/9bf5fa13385cc80bfeb097e51af9862a.jpeg",
+ "friends_count": 300,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Wed Nov 16 12:52:46 +0000 2011",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/500849752351600640/lMQqIzYj_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/413944345/1403511193",
- "protected": false,
- "statuses_count": 12237,
- "friends_count": 300,
- "profile_link_color": "0099CC",
- "profile_background_color": "FFF04D",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "000000",
- "lang": "ja",
+ "id_str": "413944345",
+ "listed_count": 4,
+ "location": "",
"screen_name": "Natade_co_co_21",
- "default_profile": false,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "君の瞳にうつる僕に乾杯。",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000115928444/9bf5fa13385cc80bfeb097e51af9862a.jpeg",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/500849752351600640/lMQqIzYj_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 12237,
+ "followers_count": 298,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "000000",
+ "profile_link_color": "0099CC",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/413944345/1403511193",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000115928444/9bf5fa13385cc80bfeb097e51af9862a.jpeg",
- "follow_request_sent": false,
+ "id": 413944345,
+ "profile_sidebar_fill_color": "F6FFD1",
+ "verified": false,
"favourites_count": 3125,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874852754907136",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "retweeted": false,
- "contributors": null,
- "text": "RT @siranuga_hotoke: ゴキブリは一世帯に平均して480匹いる。",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [],
- "user_mentions": [
- {
- "indices": [
- 3,
- 19
- ],
- "id": 2243896200,
- "id_str": "2243896200",
- "screen_name": "siranuga_hotoke",
- "name": "知らぬが仏bot"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 1,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:28:58 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 1,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874852754907136,
+ "retweeted": false,
+ "id_str": "505874852754907136",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505871779949051904,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [],
+ "urls": [
+ {
+ "display_url": "pic.twitter.com/SXoYWH98as",
+ "url": "http://t.co/SXoYWH98as",
+ "expanded_url": "http://twitter.com/UARROW_Y/status/505871779949051904/photo/1",
+ "indices": [
+ 15,
+ 37
+ ]
+ }
+ ],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "ようかい体操第一を踊る国見英 http://t.co/SXoYWH98as",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:16:45 +0000 2014",
+ "source": "Twitter for Android",
+ "lang": "ja",
+ "favorite_count": 54,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1261662588,
- "followers_count": 265,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "HQ!! 成人済腐女子。日常ツイート多いです。赤葦京治夢豚クソツイ含みます注意。フォローをお考えの際はプロフご一読お願い致します。FRBお気軽に",
- "id_str": "1261662588",
- "default_profile_image": false,
- "location": "つくり出そう国影の波 広げよう国影の輪",
- "time_zone": "Tokyo",
- "profile_image_url": "http://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png",
- "listed_count": 12,
"entities": {
+ "description": {
+ "urls": []
+ },
"url": {
"urls": [
{
+ "display_url": "twpf.jp/UARROW_Y",
+ "url": "http://t.co/LFX2XOzb0l",
+ "expanded_url": "http://twpf.jp/UARROW_Y",
"indices": [
0,
22
- ],
- "display_url": "twpf.jp/UARROW_Y",
- "url": "http://t.co/LFX2XOzb0l",
- "expanded_url": "http://twpf.jp/UARROW_Y"
+ ]
}
]
- },
- "description": {
- "urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png",
"name": "ゆう矢",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 124,
+ "time_zone": "Tokyo",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Tue Mar 12 10:42:17 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png",
"geo_enabled": true,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/1261662588/1408618604",
- "protected": false,
- "statuses_count": 55946,
- "friends_count": 124,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": "http://t.co/LFX2XOzb0l",
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "1261662588",
+ "listed_count": 12,
+ "location": "つくり出そう国影の波 広げよう国影の輪",
"screen_name": "UARROW_Y",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "HQ!! 成人済腐女子。日常ツイート多いです。赤葦京治夢豚クソツイ含みます注意。フォローをお考えの際はプロフご一読お願い致します。FRBお気軽に",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 55946,
+ "followers_count": 265,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1261662588/1408618604",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 1261662588,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 6762,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 54,
- "id_str": "505871779949051904",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "ようかい体操第一を踊る国見英 http://t.co/SXoYWH98as",
- "lang": "ja",
- "source": "Twitter for Android",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [
- {
- "indices": [
- 15,
- 37
- ],
- "display_url": "pic.twitter.com/SXoYWH98as",
- "url": "http://t.co/SXoYWH98as",
- "expanded_url": "http://twitter.com/UARROW_Y/status/505871779949051904/photo/1"
- }
- ],
- "user_mentions": [],
- "hashtags": []
+ "url": "http://t.co/LFX2XOzb0l"
},
- "retweet_count": 29,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:16:45 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 29,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505871779949051904,
+ "retweeted": false,
+ "id_str": "505871779949051904",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "id": 505874852603908096,
+ "entities": {
+ "hashtags": [],
+ "user_mentions": [
+ {
+ "screen_name": "UARROW_Y",
+ "id": 1261662588,
+ "id_str": "1261662588",
+ "indices": [
+ 3,
+ 12
+ ],
+ "name": "ゆう矢"
+ }
+ ],
+ "urls": [
+ {
+ "display_url": "pic.twitter.com/SXoYWH98as",
+ "url": "http://t.co/SXoYWH98as",
+ "expanded_url": "http://twitter.com/UARROW_Y/status/505871779949051904/photo/1",
+ "indices": [
+ 29,
+ 51
+ ]
+ }
+ ],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @UARROW_Y: ようかい体操第一を踊る国見英 http://t.co/SXoYWH98as",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:28:58 +0000 2014",
+ "source": "Twitter for iPhone",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 2463035136,
- "followers_count": 4,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "きもちわるいことつぶやく用",
- "id_str": "2463035136",
- "default_profile_image": false,
- "location": "",
- "time_zone": "Irkutsk",
- "profile_image_url": "http://pbs.twimg.com/profile_images/505345820137234433/csFeRxPm_normal.jpeg",
- "listed_count": 0,
"entities": {
"description": {
"urls": []
}
},
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/505345820137234433/csFeRxPm_normal.jpeg",
"name": "や",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "friends_count": 30,
+ "time_zone": "Irkutsk",
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": 32400,
"created_at": "Fri Apr 25 10:49:20 +0000 2014",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/505345820137234433/csFeRxPm_normal.jpeg",
"geo_enabled": false,
- "protected": false,
- "statuses_count": 390,
- "friends_count": 30,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "ja",
+ "id_str": "2463035136",
+ "listed_count": 0,
+ "location": "",
"screen_name": "yae45",
- "default_profile": true,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "きもちわるいことつぶやく用",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/505345820137234433/csFeRxPm_normal.jpeg",
+ "utc_offset": 32400,
"profile_background_tile": false,
+ "statuses_count": 390,
+ "followers_count": 4,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "lang": "ja",
+ "following": false,
+ "default_profile": true,
+ "is_translator": false,
+ "profile_link_color": "0084B4",
+ "profile_sidebar_border_color": "C0DEED",
"profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
+ "id": 2463035136,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 827,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874852603908096",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "RT @UARROW_Y: ようかい体操第一を踊る国見英 http://t.co/SXoYWH98as",
- "lang": "ja",
- "source": "Twitter for iPhone",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [
- {
- "indices": [
- 29,
- 51
- ],
- "display_url": "pic.twitter.com/SXoYWH98as",
- "url": "http://t.co/SXoYWH98as",
- "expanded_url": "http://twitter.com/UARROW_Y/status/505871779949051904/photo/1"
- }
- ],
- "user_mentions": [
- {
- "indices": [
- 3,
- 12
- ],
- "id": 1261662588,
- "id_str": "1261662588",
- "screen_name": "UARROW_Y",
- "name": "ゆう矢"
- }
- ],
- "hashtags": []
+ "url": null
},
- "retweet_count": 29,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:28:58 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 29,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874852603908096,
+ "retweeted": false,
+ "id_str": "505874852603908096",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
"retweeted_status": {
- "id": 505866670356070401,
- "user": {
- "is_translator": false,
- "id": 67661086,
- "followers_count": 7143,
- "profile_sidebar_fill_color": "E0FF92",
- "description": "被人指责“封建”、“落后”、“保守”的代表,当代红卫兵攻击对象。致力于言论自由,人权; 倡导资讯公开,反对网络封锁。既不是精英分子,也不是意见领袖,本推言论不代表任何国家、党派和组织,也不标榜伟大、光荣和正确。",
- "id_str": "67661086",
- "default_profile_image": false,
- "location": "Middle of Nowhere",
- "time_zone": "Singapore",
- "profile_image_url": "http://pbs.twimg.com/profile_images/3253137427/3524557d21ef2c04871e985d4d136bdb_normal.jpeg",
- "listed_count": 94,
- "entities": {
- "description": {
- "urls": []
- }
- },
- "name": "※范强※法特姗瑟希蒲※",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/611138516/toeccqnahbpmr0sw9ybv.jpeg",
- "contributors_enabled": false,
- "utc_offset": 28800,
- "created_at": "Fri Aug 21 17:16:22 +0000 2009",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/67661086/1385608347",
- "protected": false,
- "statuses_count": 16751,
- "friends_count": 779,
- "profile_link_color": "ED1313",
- "profile_background_color": "FFFFFF",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "FFFFFF",
- "lang": "en",
- "screen_name": "fightcensorship",
- "default_profile": false,
- "profile_use_background_image": true,
- "profile_text_color": "000000",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/3253137427/3524557d21ef2c04871e985d4d136bdb_normal.jpeg",
- "profile_background_tile": true,
- "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/611138516/toeccqnahbpmr0sw9ybv.jpeg",
- "follow_request_sent": false,
- "favourites_count": 364,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 2,
- "id_str": "505866670356070401",
- "geo": null,
- "metadata": {
- "iso_language_code": "zh",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "李克強總理的臉綠了!在前日南京青奧會閉幕式,觀眾席上一名貪玩韓國少年運動員,竟斗膽用激光筆射向中國總理李克強的臉。http://t.co/HLX9mHcQwe http://t.co/fVVOSML5s8",
- "lang": "zh",
- "source": "Twitter Web Client",
- "truncated": false,
"entities": {
- "urls": [
- {
- "indices": [
- 57,
- 79
- ],
- "display_url": "is.gd/H3OgTO",
- "url": "http://t.co/HLX9mHcQwe",
- "expanded_url": "http://is.gd/H3OgTO"
- }
- ],
+ "hashtags": [],
+ "user_mentions": [],
"media": [
{
- "indices": [
- 80,
- 102
- ],
- "id": 505866668485386241,
- "media_url": "http://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg",
+ "display_url": "pic.twitter.com/fVVOSML5s8",
+ "media_url_https": "https://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg",
+ "expanded_url": "http://twitter.com/fightcensorship/status/505866670356070401/photo/1",
"sizes": {
"large": {
+ "h": 554,
"w": 640,
- "resize": "fit",
- "h": 554
- },
- "thumb": {
- "w": 150,
- "resize": "crop",
- "h": 150
+ "resize": "fit"
},
"small": {
+ "h": 294,
"w": 340,
- "resize": "fit",
- "h": 294
+ "resize": "fit"
},
"medium": {
+ "h": 519,
"w": 600,
- "resize": "fit",
- "h": 519
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
}
},
+ "media_url": "http://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg",
+ "indices": [
+ 80,
+ 102
+ ],
+ "id": 505866668485386241,
"id_str": "505866668485386241",
- "expanded_url": "http://twitter.com/fightcensorship/status/505866670356070401/photo/1",
"type": "photo",
- "display_url": "pic.twitter.com/fVVOSML5s8",
- "url": "http://t.co/fVVOSML5s8",
- "media_url_https": "https://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg"
+ "url": "http://t.co/fVVOSML5s8"
}
],
- "symbols": [],
- "user_mentions": [],
- "hashtags": []
+ "urls": [
+ {
+ "display_url": "is.gd/H3OgTO",
+ "url": "http://t.co/HLX9mHcQwe",
+ "expanded_url": "http://is.gd/H3OgTO",
+ "indices": [
+ 57,
+ 79
+ ]
+ }
+ ],
+ "symbols": []
},
- "retweet_count": 4,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "李克強總理的臉綠了!在前日南京青奧會閉幕式,觀眾席上一名貪玩韓國少年運動員,竟斗膽用激光筆射向中國總理李克強的臉。http://t.co/HLX9mHcQwe http://t.co/fVVOSML5s8",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "zh"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
"created_at": "Sat Aug 30 23:56:27 +0000 2014",
- "in_reply_to_user_id": null,
- "in_reply_to_status_id_str": null,
- "favorited": false
- },
- "id": 505874848900341760,
- "user": {
- "is_translator": false,
- "id": 889332218,
- "followers_count": 313,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "经历了怎样的曲折才从追求“一致通过”发展到今天人们接受“过半数通过”,正是人们认识到对“一致”甚至是“基本一致”的追求本身就会变成一种独裁。",
- "id_str": "889332218",
- "default_profile_image": false,
- "location": "km/cn",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/378800000563062033/a7e8274752ce36a6cd5bad971ec7d416_normal.jpeg",
- "listed_count": 0,
- "entities": {
- "description": {
- "urls": []
- }
+ "source": "Twitter Web Client",
+ "lang": "zh",
+ "favorite_count": 2,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "FFFFFF",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/3253137427/3524557d21ef2c04871e985d4d136bdb_normal.jpeg",
+ "name": "※范强※法特姗瑟希蒲※",
+ "friends_count": 779,
+ "time_zone": "Singapore",
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Fri Aug 21 17:16:22 +0000 2009",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/3253137427/3524557d21ef2c04871e985d4d136bdb_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "67661086",
+ "listed_count": 94,
+ "location": "Middle of Nowhere",
+ "screen_name": "fightcensorship",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "被人指责“封建”、“落后”、“保守”的代表,当代红卫兵攻击对象。致力于言论自由,人权; 倡导资讯公开,反对网络封锁。既不是精英分子,也不是意见领袖,本推言论不代表任何国家、党派和组织,也不标榜伟大、光荣和正确。",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/611138516/toeccqnahbpmr0sw9ybv.jpeg",
+ "profile_text_color": "000000",
+ "utc_offset": 28800,
+ "profile_background_tile": true,
+ "statuses_count": 16751,
+ "followers_count": 7143,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "en",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "FFFFFF",
+ "profile_link_color": "ED1313",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/67661086/1385608347",
+ "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/611138516/toeccqnahbpmr0sw9ybv.jpeg",
+ "id": 67661086,
+ "profile_sidebar_fill_color": "E0FF92",
+ "verified": false,
+ "favourites_count": 364,
+ "url": null
},
- "name": "民權初步",
- "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
- "contributors_enabled": false,
- "utc_offset": null,
- "created_at": "Thu Oct 18 17:21:17 +0000 2012",
- "is_translation_enabled": false,
- "geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/889332218/1388896916",
- "protected": false,
- "statuses_count": 15707,
- "friends_count": 46,
- "profile_link_color": "0084B4",
- "profile_background_color": "C0DEED",
- "notifications": false,
- "url": null,
- "profile_sidebar_border_color": "C0DEED",
- "lang": "en",
- "screen_name": "JoeyYoungkm",
- "default_profile": true,
- "profile_use_background_image": true,
- "profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000563062033/a7e8274752ce36a6cd5bad971ec7d416_normal.jpeg",
- "profile_background_tile": false,
- "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
- "follow_request_sent": false,
- "favourites_count": 24,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874848900341760",
- "geo": null,
- "metadata": {
- "iso_language_code": "zh",
- "result_type": "recent"
+ "in_reply_to_status_id": null,
+ "retweet_count": 4,
+ "in_reply_to_status_id_str": null,
+ "id": 505866670356070401,
+ "retweeted": false,
+ "id_str": "505866670356070401",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "RT @fightcensorship: 李克強總理的臉綠了!在前日南京青奧會閉幕式,觀眾席上一名貪玩韓國少年運動員,竟斗膽用激光筆射向中國總理李克強的臉。http://t.co/HLX9mHcQwe http://t.co/fVVOSML5s8",
- "lang": "zh",
- "source": "Twitter for iPhone",
- "truncated": false,
"entities": {
- "urls": [
+ "hashtags": [],
+ "user_mentions": [
{
+ "screen_name": "fightcensorship",
+ "id": 67661086,
+ "id_str": "67661086",
"indices": [
- 78,
- 100
+ 3,
+ 19
],
- "display_url": "is.gd/H3OgTO",
- "url": "http://t.co/HLX9mHcQwe",
- "expanded_url": "http://is.gd/H3OgTO"
+ "name": "※范强※法特姗瑟希蒲※"
}
],
"media": [
{
- "indices": [
- 101,
- 123
- ],
- "id": 505866668485386241,
- "media_url": "http://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg",
- "source_status_id_str": "505866670356070401",
+ "display_url": "pic.twitter.com/fVVOSML5s8",
+ "media_url_https": "https://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg",
+ "expanded_url": "http://twitter.com/fightcensorship/status/505866670356070401/photo/1",
"source_status_id": 505866670356070400,
"sizes": {
"large": {
- "w": 640,
- "resize": "fit",
- "h": 554
- },
- "thumb": {
- "w": 150,
- "resize": "crop",
- "h": 150
+ "h": 554,
+ "w": 640,
+ "resize": "fit"
},
"small": {
+ "h": 294,
"w": 340,
- "resize": "fit",
- "h": 294
+ "resize": "fit"
},
"medium": {
+ "h": 519,
"w": 600,
- "resize": "fit",
- "h": 519
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
}
},
+ "media_url": "http://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg",
+ "indices": [
+ 101,
+ 123
+ ],
+ "id": 505866668485386241,
+ "source_status_id_str": "505866670356070401",
"id_str": "505866668485386241",
- "expanded_url": "http://twitter.com/fightcensorship/status/505866670356070401/photo/1",
"type": "photo",
- "display_url": "pic.twitter.com/fVVOSML5s8",
- "url": "http://t.co/fVVOSML5s8",
- "media_url_https": "https://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg"
+ "url": "http://t.co/fVVOSML5s8"
}
],
- "symbols": [],
- "user_mentions": [
+ "urls": [
{
+ "display_url": "is.gd/H3OgTO",
+ "url": "http://t.co/HLX9mHcQwe",
+ "expanded_url": "http://is.gd/H3OgTO",
"indices": [
- 3,
- 19
- ],
- "id": 67661086,
- "id_str": "67661086",
- "screen_name": "fightcensorship",
- "name": "※范强※法特姗瑟希蒲※"
+ 78,
+ 100
+ ]
}
],
- "hashtags": []
+ "symbols": []
},
- "retweet_count": 4,
- "in_reply_to_status_id": null,
- "coordinates": null,
+ "truncated": false,
+ "in_reply_to_user_id": null,
"place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "RT @fightcensorship: 李克強總理的臉綠了!在前日南京青奧會閉幕式,觀眾席上一名貪玩韓國少年運動員,竟斗膽用激光筆射向中國總理李克強的臉。http://t.co/HLX9mHcQwe http://t.co/fVVOSML5s8",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "zh"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
"created_at": "Sun Aug 31 00:28:57 +0000 2014",
- "in_reply_to_user_id": null,
+ "source": "Twitter for iPhone",
+ "lang": "zh",
+ "favorite_count": 0,
+ "contributors": null,
+ "user": {
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "protected": false,
+ "profile_background_color": "C0DEED",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/378800000563062033/a7e8274752ce36a6cd5bad971ec7d416_normal.jpeg",
+ "name": "民權初步",
+ "friends_count": 46,
+ "time_zone": null,
+ "is_translation_enabled": false,
+ "contributors_enabled": false,
+ "created_at": "Thu Oct 18 17:21:17 +0000 2012",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000563062033/a7e8274752ce36a6cd5bad971ec7d416_normal.jpeg",
+ "geo_enabled": false,
+ "id_str": "889332218",
+ "listed_count": 0,
+ "location": "km/cn",
+ "screen_name": "JoeyYoungkm",
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "经历了怎样的曲折才从追求“一致通过”发展到今天人们接受“过半数通过”,正是人们认识到对“一致”甚至是“基本一致”的追求本身就会变成一种独裁。",
+ "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",
+ "profile_text_color": "333333",
+ "utc_offset": null,
+ "profile_background_tile": false,
+ "statuses_count": 15707,
+ "followers_count": 313,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "en",
+ "default_profile": true,
+ "is_translator": false,
+ "profile_sidebar_border_color": "C0DEED",
+ "profile_link_color": "0084B4",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/889332218/1388896916",
+ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",
+ "id": 889332218,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
+ "favourites_count": 24,
+ "url": null
+ },
+ "in_reply_to_status_id": null,
+ "retweet_count": 4,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874848900341760,
+ "retweeted": false,
+ "id_str": "505874848900341760",
+ "geo": null,
+ "in_reply_to_screen_name": null
},
{
- "id": 505874847260352513,
+ "entities": {
+ "hashtags": [
+ {
+ "text": "sm24357625",
+ "indices": [
+ 53,
+ 64
+ ]
+ }
+ ],
+ "user_mentions": [],
+ "urls": [
+ {
+ "display_url": "nico.ms/sm24357625",
+ "url": "http://t.co/PjL9if8OZC",
+ "expanded_url": "http://nico.ms/sm24357625",
+ "indices": [
+ 30,
+ 52
+ ]
+ }
+ ],
+ "symbols": []
+ },
+ "truncated": false,
+ "in_reply_to_user_id": null,
+ "place": null,
+ "in_reply_to_user_id_str": null,
+ "text": "【マイリスト】【彩りりあ】妖怪体操第一 踊ってみた【反転】 http://t.co/PjL9if8OZC #sm24357625",
+ "coordinates": null,
+ "metadata": {
+ "result_type": "recent",
+ "iso_language_code": "ja"
+ },
+ "possibly_sensitive": false,
+ "favorited": false,
+ "created_at": "Sun Aug 31 00:28:56 +0000 2014",
+ "source": "ニコニコ動画",
+ "lang": "ja",
+ "favorite_count": 0,
+ "contributors": null,
"user": {
- "is_translator": false,
- "id": 1609789375,
- "followers_count": 560,
- "profile_sidebar_fill_color": "DDEEF6",
- "description": "ニコ動で踊り手やってます!!応援本当に嬉しいですありがとうございます!! ぽっちゃりだけど前向きに頑張る腐女子です。嵐と弱虫ペダルが大好き!【お返事】りぷ(基本は)”○” DM (同業者様を除いて)”×” 動画の転載は絶対にやめてください。 ブログ→http://t.co/8E91tqoeKX ",
- "id_str": "1609789375",
- "default_profile_image": false,
- "location": "ニノと二次元の間",
- "time_zone": null,
- "profile_image_url": "http://pbs.twimg.com/profile_images/487853237723095041/LMBMGvOc_normal.jpeg",
- "listed_count": 11,
"entities": {
- "url": {
+ "description": {
"urls": [
{
+ "display_url": "ameblo.jp/2no38mae/",
+ "url": "http://t.co/8E91tqoeKX",
+ "expanded_url": "http://ameblo.jp/2no38mae/",
"indices": [
- 0,
- 22
- ],
- "display_url": "nicovideo.jp/mylist/37917495",
- "url": "http://t.co/ulD2e9mcwb",
- "expanded_url": "http://www.nicovideo.jp/mylist/37917495"
+ 125,
+ 147
+ ]
}
]
},
- "description": {
+ "url": {
"urls": [
{
+ "display_url": "nicovideo.jp/mylist/37917495",
+ "url": "http://t.co/ulD2e9mcwb",
+ "expanded_url": "http://www.nicovideo.jp/mylist/37917495",
"indices": [
- 125,
- 147
- ],
- "display_url": "ameblo.jp/2no38mae/",
- "url": "http://t.co/8E91tqoeKX",
- "expanded_url": "http://ameblo.jp/2no38mae/"
+ 0,
+ 22
+ ]
}
]
}
},
+ "protected": false,
+ "profile_background_color": "F2C6E4",
+ "profile_image_url": "http://pbs.twimg.com/profile_images/487853237723095041/LMBMGvOc_normal.jpeg",
"name": "食いしん坊前ちゃん",
- "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000029400927/114b242f5d838ec7cb098ea5db6df413.jpeg",
+ "friends_count": 875,
+ "time_zone": null,
+ "is_translation_enabled": false,
"contributors_enabled": false,
- "utc_offset": null,
"created_at": "Sun Jul 21 05:09:43 +0000 2013",
- "is_translation_enabled": false,
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/487853237723095041/LMBMGvOc_normal.jpeg",
"geo_enabled": false,
- "profile_banner_url": "https://pbs.twimg.com/profile_banners/1609789375/1375752225",
- "protected": false,
- "statuses_count": 3759,
- "friends_count": 875,
- "profile_link_color": "FF9EDD",
- "profile_background_color": "F2C6E4",
- "notifications": false,
- "url": "http://t.co/ulD2e9mcwb",
- "profile_sidebar_border_color": "FFFFFF",
- "lang": "ja",
+ "id_str": "1609789375",
+ "listed_count": 11,
+ "location": "ニノと二次元の間",
"screen_name": "2no38mae",
- "default_profile": false,
- "profile_use_background_image": true,
+ "notifications": false,
+ "follow_request_sent": false,
+ "description": "ニコ動で踊り手やってます!!応援本当に嬉しいですありがとうございます!! ぽっちゃりだけど前向きに頑張る腐女子です。嵐と弱虫ペダルが大好き!【お返事】りぷ(基本は)”○” DM (同業者様を除いて)”×” 動画の転載は絶対にやめてください。 ブログ→http://t.co/8E91tqoeKX ",
+ "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000029400927/114b242f5d838ec7cb098ea5db6df413.jpeg",
"profile_text_color": "333333",
- "following": false,
- "profile_image_url_https": "https://pbs.twimg.com/profile_images/487853237723095041/LMBMGvOc_normal.jpeg",
+ "utc_offset": null,
"profile_background_tile": false,
+ "statuses_count": 3759,
+ "followers_count": 560,
+ "profile_use_background_image": true,
+ "default_profile_image": false,
+ "following": false,
+ "lang": "ja",
+ "default_profile": false,
+ "is_translator": false,
+ "profile_sidebar_border_color": "FFFFFF",
+ "profile_link_color": "FF9EDD",
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1609789375/1375752225",
"profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000029400927/114b242f5d838ec7cb098ea5db6df413.jpeg",
- "follow_request_sent": false,
+ "id": 1609789375,
+ "profile_sidebar_fill_color": "DDEEF6",
+ "verified": false,
"favourites_count": 323,
- "verified": false
- },
- "in_reply_to_user_id_str": null,
- "in_reply_to_screen_name": null,
- "favorite_count": 0,
- "id_str": "505874847260352513",
- "geo": null,
- "metadata": {
- "iso_language_code": "ja",
- "result_type": "recent"
- },
- "possibly_sensitive": false,
- "retweeted": false,
- "contributors": null,
- "text": "【マイリスト】【彩りりあ】妖怪体操第一 踊ってみた【反転】 http://t.co/PjL9if8OZC #sm24357625",
- "lang": "ja",
- "source": "ニコニコ動画",
- "truncated": false,
- "entities": {
- "symbols": [],
- "urls": [
- {
- "indices": [
- 30,
- 52
- ],
- "display_url": "nico.ms/sm24357625",
- "url": "http://t.co/PjL9if8OZC",
- "expanded_url": "http://nico.ms/sm24357625"
- }
- ],
- "user_mentions": [],
- "hashtags": [
- {
- "indices": [
- 53,
- 64
- ],
- "text": "sm24357625"
- }
- ]
+ "url": "http://t.co/ulD2e9mcwb"
},
- "retweet_count": 0,
"in_reply_to_status_id": null,
- "coordinates": null,
- "place": null,
- "created_at": "Sun Aug 31 00:28:56 +0000 2014",
- "in_reply_to_user_id": null,
+ "retweet_count": 0,
"in_reply_to_status_id_str": null,
- "favorited": false
+ "id": 505874847260352513,
+ "retweeted": false,
+ "id_str": "505874847260352513",
+ "geo": null,
+ "in_reply_to_screen_name": null
}
- ]
+ ],
+ "search_metadata": {
+ "max_id_str": "505874924095815681",
+ "completed_in": 0.087,
+ "since_id": 0,
+ "max_id": 505874924095815700,
+ "next_results": "?max_id=505874847260352512&q=%E4%B8%80&count=100&include_entities=1",
+ "since_id_str": "0",
+ "query": "%E4%B8%80",
+ "count": 100,
+ "refresh_url": "?since_id=505874924095815681&q=%E4%B8%80&include_entities=1"
+ }
}
\ No newline at end of file