我已经阅读了APNS Development [sandbox] vs Production 这个问题,但是对我没有帮助。
我的问题是,如何在开发中使用生产证书。这是我的代码,如果我想在开发中使用apns,则必须设置<div class="form-group">
<h2>Course code</h2>
<input type="search" class="typehead" autocomplete="off" spellcheck="false">
</div>
。
现在,我不想每次都在生产和开发之间来回切换。我能想到的是添加一个判断,
client := apns2.NewClient(cert).Development()
我想知道,if _, err := os.Stat("/path/to/debugfile"); err == nil {//Debugfile is just a file
client := apns2.NewClient(cert).Decelopment()
} else if os.IsNotExist(err) {
client := apns2.NewClient(cert).Production()
}
这句话是什么意思?如何在不判断debugfile是否存在的情况下在开发中使用生产证书?
i can use production cert in development.