immobiliare / ApnsPHP

ApnsPHP: Apple Push Notification & Feedback Provider
BSD 3-Clause "New" or "Revised" License
1.43k stars 449 forks source link

Suggestion to save some character space (JSON_UNESCAPED_SLASHES) #26

Closed tucoinfo closed 10 years ago

tucoinfo commented 11 years ago

Hi,

Don't know if you feel this is dangerous but notifications with a URL as CustomProperty value still work for me without being escaped.

http://some.site/dir1/dir2/dir3 vs. http:\/\/some.site\/dir1\/dir2\/dir3

Message.php #375

$sJSON = json_encode($this->_getPayload(), defined('JSON_UNESCAPED_UNICODE') ? JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES : 0);

Cheers Léon

cocoajin commented 10 years ago

me too please help?

tucoinfo commented 10 years ago

See Message.php as per previous pmessage and line change.

cocoajin commented 10 years ago

how to fix this! thanks ,please show the code!