IOSプッシュ通知を実装しようとしています。私のPHPバージョンは動作を停止し、再び動作させることができませんでした。しかし、Appleの新しい認証キーを使用して、完全に動作するnode.jsスクリプトがあります。 PHPを使用してそれを呼び出します:
chdir("../apns");
exec("node app.js &", $output);
ただし、deviceTokenとメッセージを渡すことができるようにしたいと思います。スクリプトにパラメーターを渡す方法はありますか?
実行しようとしているスクリプト(app.js)は次のとおりです。
var apn = require('apn');
var apnProvider = new apn.Provider({
token: {
key: 'apns.p8', // Path to the key p8 file
keyId: '<my key id>', // The Key ID of the p8 file (available at https://developer.Apple.com/account/ios/certificate/key)
teamId: '<my team id>', // The Team ID of your Apple Developer Account (available at https://developer.Apple.com/account/#/membership/)
},
production: false // Set to true if sending a notification to a production iOS app
});
var deviceToken = '<my device token>';
var notification = new apn.Notification();
notification.topic = '<my app>';
notification.expiry = Math.floor(Date.now() / 1000) + 3600;
notification.badge = 3;
notification.sound = 'ping.aiff';
notification.alert = 'This is a test notification \u270C';
notification.payload = {id: 123};
apnProvider.send(notification, deviceToken).then(function(result) {
console.log(result);
process.exit(0)
});
他のスクリプトに渡すようにパラメーターを渡すことができます。
node index.js param1 param2 paramN
process.argv を使用して引数にアクセスできます
Process.argvプロパティは、Node.jsプロセスの起動時に渡されたコマンドライン引数を含む配列を返します。最初の要素はprocess.execPathです。 argv [0]の元の値へのアクセスが必要な場合は、process.argv0を参照してください。 2番目の要素は、実行されるJavaScriptファイルへのパスです。残りの要素は、追加のコマンドライン引数になります。
exec("node app.js --token=my-token --mesage=\"my message\" &", $output);
app.js
console.log(process.argv);
/*
Output:
[ '/usr/local/bin/node',
'/your/path/app.js',
'--token=my-token',
'--mesage=my message' ]
*/
minimist を使用して、引数を解析できます。
const argv = require('minimist')(process.argv.slice(2));
console.log(argv);
/*
Output
{
_: [],
token: 'my-token',
mesage: 'my message'
}
*/
console.log(argv.token) //my-token
console.log(argv.message) //my-message