Skip to content

Instantly share code, notes, and snippets.

View EricWarnke's full-sized avatar
🙇‍♂️
Praying to the GitHub gods

Eric Warnke EricWarnke

🙇‍♂️
Praying to the GitHub gods
View GitHub Profile
@EricWarnke
EricWarnke / rounded_box_gist.css
Created November 6, 2012 17:17 — forked from cowboycoded/rounded_box_gist.css
styles for rounded box gist, Mover.io style
/* Better styles for embedding GitHub Gists */
.gist {
font-size: 13px;
line-height: 18px;
margin: 15px 0 !important;
width: 100%;
pre {
font-family: Menlo,Monaco,'Bitstream Vera Sans Mono','Courier New',monospace !important
}
curl https://api.mover.io/account/limits \
-X GET \
-H "Authorization: MoverAPI app_id=2tsc0f9n9l4v209oara0mb2j5ur9my8v app_secret=65oow347p1q7d0loj45oje2u3sol99xd" \
@EricWarnke
EricWarnke / request.sh
Created November 2, 2012 22:23
http://mover.io/docs#Authentication - Example Authorized Request
curl https://api.mover.io/connectors \
-X GET \
-H "Authorization: MoverAPI app_id=2tsc0f9n9l4v209oara0mb2j5ur9my8v app_secret=65oow347p1q7d0loj45oje2u3sol99xd"
curl https://api.mover.io/templates/8hCxfCv39p7uBUWaLsJx/transfers \
-X GET \
-H "Authorization: MoverAPI app_id=2tsc0f9n9l4v209oara0mb2j5ur9my8v app_secret=65oow347p1q7d0loj45oje2u3sol99xd"
@EricWarnke
EricWarnke / request.sh
Created November 2, 2012 22:03
http://mover.io/docs#transfer_templates Create a Transfer from a Template
curl https://api.mover.io/transfer_templates/8hCxfCv39p7uBUWaLsJx/run \
-X POST \
-H "Authorization: MoverAPI app_id=2tsc0f9n9l4v209oara0mb2j5ur9my8v app_secret=65oow347p1q7d0loj45oje2u3sol99xd"
curl https://api.mover.io/transfer_templates \
-X POST \
-H "Authorization: MoverAPI app_id=2tsc0f9n9l4v209oara0mb2j5ur9my8v app_secret=65oow347p1q7d0loj45oje2u3sol99xd"
curl https://api.mover.io/transfer_templates/AOq0256atUHouhaG9265Rs \
-X GET \
-H "Authorization: MoverAPI app_id=2tsc0f9n9l4v209oara0mb2j5ur9my8v app_secret=65oow347p1q7d0loj45oje2u3sol99xd"
curl https://api.mover.io/transfer_templates/ \
-X GET \
-H "Authorization: MoverAPI app_id=2tsc0f9n9l4v209oara0mb2j5ur9my8v app_secret=65oow347p1q7d0loj45oje2u3sol99xd"
{
"id" : "AOq0256atUHouhaG9265Rs",
"source" : {
"connector_id" : "ZHapto96125uySRatpo7UO",
"collection_id" : "61253p7AHTG69tpoHSTG9U"
},
"destination" : {
"connector_id" : "za0536H0sdh526JLlH",
"collection_id" : "AStoghH9woh2AAaot56TH"
},
curl https://api.mover.io/transfers/AOq0256atUHouhaG9265Rs \
-X GET \
-H "Authorization: MoverAPI app_id=2tsc0f9n9l4v209oara0mb2j5ur9my8v app_secret=65oow347p1q7d0loj45oje2u3sol99xd"