Unverified Commit 948031c4 authored by Dave Machado's avatar Dave Machado
Browse files

Merge branch 'master' of git://github.com/toddmotto/public-apis

parents 3bb7448f 4520c8d5
...@@ -20,7 +20,7 @@ Example entry: ...@@ -20,7 +20,7 @@ Example entry:
| NASA | NASA data, including imagery | No | Yes | [Go!](https://api.nasa.gov) | | NASA | NASA data, including imagery | No | Yes | [Go!](https://api.nasa.gov) |
``` ```
Currently, the only accepted inputs for this field are as follows: \* Currently, the only accepted inputs for this field are as follows:
* `OAuth` - _the API supports OAuth_ * `OAuth` - _the API supports OAuth_
* `apiKey` - _the API uses a private key string/token for authentication - try and use the correct parameter_ * `apiKey` - _the API uses a private key string/token for authentication - try and use the correct parameter_
......
This diff is collapsed.
...@@ -16,6 +16,17 @@ else ...@@ -16,6 +16,17 @@ else
cat additions.txt cat additions.txt
echo "------- END ADDITIONS ------" echo "------- END ADDITIONS ------"
LINK_FILE=additions.txt LINK_FILE=additions.txt
echo "checking if /json was changed..."
if egrep "\+{3}\s.\/json\/" diff.txt > json.txt; then
echo "JSON files are auto-generated! Please do not update these files:"
cat json.txt
exit 1
else
echo "/json check passed!"
rm json.txt
fi
fi fi
echo "checking if /json was changed..." echo "checking if /json was changed..."
......
...@@ -50,6 +50,8 @@ links.each do |link| ...@@ -50,6 +50,8 @@ links.each do |link|
if !allowed_codes.include?(res.code) if !allowed_codes.include?(res.code)
fails.push("(#{res.code}): #{link}") fails.push("(#{res.code}): #{link}")
end end
rescue HTTParty::RedirectionTooDeep
fails.push("(RTD): #{link}")
rescue Net::ReadTimeout rescue Net::ReadTimeout
fails.push("(TMO): #{link}") fails.push("(TMO): #{link}")
rescue Net::OpenTimeout rescue Net::OpenTimeout
...@@ -60,6 +62,8 @@ links.each do |link| ...@@ -60,6 +62,8 @@ links.each do |link|
fails.push("(SOK): #{link}") fails.push("(SOK): #{link}")
rescue Errno::ECONNREFUSED rescue Errno::ECONNREFUSED
fails.push("(CON): #{link}") fails.push("(CON): #{link}")
rescue Errno::ECONNRESET
next
end end
progressbar.increment progressbar.increment
end end
......
# This directory contains auto-generated JSON. Do not modify.
This diff is collapsed.
This diff is collapsed.
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment