ios2016. 3. 3. 10:18

이부분을 안해서 안된거였네요;;;;ㅠ

NSLocationWhenInUseUsageDescription 이 부분 추가하시면 됩니다.ㅠ



Posted by NeverTry
ios2015. 1. 26. 21:10

https://www.apachefriends.org/download.html

가서 xampp 설치 

(php , mysql , apache ) 다 설치될것이다. 

다 설치하고 아래의 위치로 이동          

xampp_start를 실행하면 실행될것이다. 실행하고 xampp-control을 열면

다 실행시킬필요는 없지만 실행시킨다. 

로컬디스크/xampp/htdocs/xampp로 이동시킨다.

index.html을 변경시킬것이다.

index.html 을 메모장으로 열어서 코드를 수정한다.

apns.pem 파일을 만든는건 찾아보면 나올꺼같은데...

(참고했던 사이트 : http://qnibus.com/blog/how-to-make-certification-for-apns/ ) <-- 감사합니다. 좋을글 올려주셔서


그리고 apns.pem파일은 현재 위치에다가 이동시킨다. 위에 그림에 보면 2번째라인에 4번째 파일이 보인다.(apns.pem)

코드는      아이군님의 블로그를 참조했다. ( http://theeye.pe.kr/archives/1454 )

<?php


$deviceToken = '67813b2...af1424b'; // 디바이스토큰ID 를 넣으면 된다.

$message = 'Message received from eye'; // 전송할 메시지 


// 개발용

$apnsHost = 'gateway.sandbox.push.apple.com';

$apnsCert = 'apns.pem'; <-   만든 pem를 넣으면 된다. (난 apns.pem으로 만들었다)


// 실서비스용

//$apnsHost = 'gateway.push.apple.com';

//$apnsCert = 'apns-production.pem';


$apnsPort = 2195;


$payload = array('aps' => array('alert' => $message, 'badge' => 0, 'sound' => 'default'));

$payload = json_encode($payload);


$streamContext = stream_context_create();

stream_context_set_option($streamContext, 'ssl', 'local_cert', $apnsCert);


$apns = stream_socket_client('ssl://'.$apnsHost.':'.$apnsPort, $error, $errorString, 2, STREAM_CLIENT_CONNECT, $streamContext);


if($apns)

{

  $apnsMessage = chr(0).chr(0).chr(32).pack('H*', str_replace(' ', '', $deviceToken)).chr(0).chr(strlen($payload)).$payload;

  fwrite($apns, $apnsMessage);

  fclose($apns);

}

?>

index.html을 바꾼 코드

<?php

 

$deviceToken = '64eb9af591e2674a2fedafdsfdfdd29ad0b30ffc2e2d0ddd2af2342jjfsd3ssd'; 

// 디바이스토큰ID  본인꺼 넣어야 함

$message = 'iphone push test'; // 전송할 메시지

 

// 개발용

$apnsHost = 'gateway.sandbox.push.apple.com';

$apnsCert = 'apns.pem';                  //이 파일은 C:\xampp\htdocs\xampp 에 위치한다.


// 실서비스용

//$apnsHost = 'gateway.push.apple.com';

//$apnsCert = 'apns-production.pem';

 

$apnsPort = 2195;

 

$payload = array('aps' => array('alert' => $message, 'badge' => 1, 'sound' => 'default'));

$payload = json_encode($payload);

 

$streamContext = stream_context_create();

stream_context_set_option($streamContext, 'ssl', 'local_cert', $apnsCert);

 

$apns = stream_socket_client('ssl://'.$apnsHost.':'.$apnsPort, $error, $errorString, 2, STREAM_CLIENT_CONNECT, $streamContext);

 

if($apns)

{

  $apnsMessage = chr(0).chr(0).chr(32).pack('H*', str_replace(' ', '', $deviceToken)).chr(0).chr(strlen($payload)).$payload;

  fwrite($apns, $apnsMessage);

  fclose($apns);

}

?>

<html>

<head>

<meta name="author" content="Kai Oswald Seidler">

<meta http-equiv="cache-control" content="no-cache">

<!--<?php include("lang/".file_get_contents("lang.tmp").".php"); ?> -->

<title>XAMPP <?php include('.version');?></title>


<frameset rows="74,*" marginwidth="0" marginheight="0" frameborder="0" border="0" borderwidth="0">

    <frame name="head" src="head.php" scrolling=no>

<frameset cols="150,*" marginwidth="0" marginheight="0" frameborder="0" border="0" borderwidth="0">

    <frame name="navi" src="navi.php" scrolling=no>

    <frame name="content" src="start.php" marginwidth=20>

</frameset>

</frameset>

</head>

<body bgcolor=#ffffff>

</body>

</html>

실행할 페이지

http://127.0.0.1/xampp/index.php  <-- 이걸 실행하면 됨~~~


Posted by NeverTry
ios2012. 11. 25. 17:12

http://argouml.tigris.org



'ios' 카테고리의 다른 글

daummap(다음맵) iOS 현위치 안될때..  (0) 2016.03.03
apns xampp( php ) 연동해서 구축하기  (0) 2015.01.26
APXML 사용법  (0) 2012.11.22
nib but the view outlet was not set.  (0) 2012.10.31
info.pList  (0) 2012.10.28
Posted by NeverTry