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
| // EXAMPLE | |
| ======================================== | |
| // Register [POST] | |
| // Request | |
| { | |
| "user_name":"Testing", | |
| "user_email":"[email protected]" | |
| } | |
| // Response |
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
| Endpoint : | |
| http://recruitment.api.makekimia.network/api | |
| Path : | |
| * /register (Register) [POST] | |
| Required : | |
| user_name (text) | |
| user_email (text) | |
| Return : |
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
| <html> | |
| <div id="product_name">Kacamata</div> | |
| <div id="product_group">Fashion</div> | |
| <div id="product_id">10</div> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | |
| <script language="JavaScript"> | |
| var product_id = $('#product_id').text() | |
| var product_name = $('#product_name').text() | |
| var product_group = $('#product_group').text() | |
| var phone = ['6281312020954','6281312020941','6281312020938'] |
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
| { | |
| "from": "0", | |
| "query": { | |
| "bool": { | |
| "filter": { | |
| "range": { | |
| "updated": { | |
| "gte": 1504844415000, | |
| "lte": 1505449215000 | |
| } |
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
| { | |
| "created": 1483922349000, | |
| "price": 239000, | |
| "retention": [{ | |
| "duration": 180, | |
| "sold": 7, | |
| "order": 7 | |
| }, | |
| { | |
| "duration": 30, |
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
| 151.101.129.140 reddit.com | |
| 151.101.49.140 www.reddit.com | |
| 151.101.49.140 i.redditmedia.com | |
| 151.101.49.140 m.reddit.com | |
| 151.101.49.140 g.redditmedia.com | |
| 151.101.49.140 a.thumbs.redditmedia.com | |
| 151.101.193.140 redditgifts.com | |
| 151.101.49.140 i.redd.it | |
| 151.101.49.140 b.thumbs.redditmedia.com |
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
| <?php | |
| $build = http_build_query($canonical,'','&'); | |
| $last = ceil( $jumlah / $limit ); | |
| $links = 3; | |
| $start = ( ( $page - $links ) > 0 ) ? $page - $links : 1; | |
| $end = ( ( $page + $links ) < $last ) ? $page + $links : $last; | |
| if($page == 1){ | |
| print '<link rel="next" href="'.$canonical_url.'&page=' . ( $page + 1 ) . '" />'; | |
| }elseif ($page == $end) { | |
| print '<link rel="prev" href="'.$canonical_url.'&page=' . ( $page - 1 ) . '" />'; |