Testing REST API using curl
This gist lists only the basic commands to test REST APIs with curl. If you need something more advanced, this book has everything you may need.
Simple GET Requests
Display the response only
#bp-filters-navbar .nav-item[filter-type="simple"]:not(.active) a:before { | |
content: '️️️⬜️ ' | |
} | |
#bp-filters-navbar .nav-item[filter-type="simple"].active a:before { | |
content: '️️️✅️ ' | |
} |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"os" |
echo "Replacing FB Access Token" | |
echo "--------------------\n" | |
# Displaying old value for reference | |
echo "### Old configuration" | |
grep ' access_token:' config.yml | |
echo "### New configuration" | |
echo " access_token: \"$1\"" | |
sed -i "" "s/^\s+access_token: .*$/ access_token: \"${1}\"/" config.yml |
This gist lists only the basic commands to test REST APIs with curl. If you need something more advanced, this book has everything you may need.
Display the response only
package main | |
import ( | |
"fmt" | |
"os" | |
"os/signal" | |
"syscall" | |
) | |
func main() { |
package main | |
import ( | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"os" | |
"regexp" | |
"strings" | |
) |
<?php | |
/** | |
* Provide key-value list of various entities | |
* | |
* Created by: Anis Ahmad <anis.programmer@gmail.com> | |
* Created at: 8/26/18 4:42 PM | |
*/ | |
namespace AppBundle\Traits; | |
trait ListProvider |
SELECT | |
@a:=@a+1 AS sl, | |
t.field_name, | |
ot.other_field_name, | |
-- more fields... | |
FROM | |
(SELECT @a:= 0) AS a, | |
primary_table_name t | |
JOIN other_table ot ON t.other_id = ot.id | |
WHERE |
upstream go-http-backend { | |
server 127.0.0.1:3000; | |
keepalive 20; | |
} | |
server { | |
listen 80; | |
server_name sub.domain.com; | |
# adjust as per app's requirement |
server { | |
listen 80 default_server; | |
listen [::]:80 default_server; | |
server_name my-app.tld www.my-app.tld; | |
# Serve assets directly from nginx | |
location ~ ^/(scripts/|images/|img/|js/|css/|stylesheets/|media/|robots.txt|humans.txt|favicon.ico) { | |
root /path/to/my-app/public/; | |
access_log off; |