page = HTTParty.get("https://api.4chan.org/b/0.json").body
threads = JSON.parse(page)
count = 0
unless threads.nil?
threads['threads'].each do
count = count + 1
end
end
if count > 0
say "You have #{count} new threads."
unless threads['posts'].nil?
threads['posts'].each do |x|
say x['com']
end
end
end
if count == 0
say "You have no new threads."
end
for some reason it says that posts is empty i guess but threads never is....I am not sure whats wrong and its doing the same thing for me on the facebook plugin but that worked yesterday and now nothing. Am I doing something wrong?