This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ openssl pkcs12 -clcerts -nokeys -out apns-dev-cert.pem -in apns_development_cert.p12 | |
$ openssl pkcs12 -nocerts -out apns-dev-key.pem -in apns_development_key.p12 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// app identifier를 찾아서 검색한다 | |
$.map($("div.card"), function(n, i) { | |
if($(n).attr("data-docid").indexOf("APP.IDENTIFIER") != -1) | |
{ | |
console.log(i, $(n).attr("data-docid")); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// USER API | |
server.get('/:version/user/:userId', route, finished); | |
server.post('/:version/user', route, finished); | |
server.put('/:version/user/:userId', route, finished); | |
function route(req, res, next) | |
{ | |
var routeString = getRoutePathString(req.url); | |
var target; |
OlderNewer