What technology are they using ?

Discussion in 'PHP' started by gr8webseller, Aug 13, 2011.

  1. #1
    gr8webseller, Aug 13, 2011 IP
  2. ssmm987

    ssmm987 Member

    Messages:
    180
    Likes Received:
    4
    Best Answers:
    3
    Trophy Points:
    43
    #2
    ssmm987, Aug 14, 2011 IP
  3. freelanceinphp

    freelanceinphp Member

    Messages:
    134
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    48
    #3
    they are using data fetching techniques to copy data from official android site to their site, you can also create same site and get data from original android site.
     
    freelanceinphp, Aug 15, 2011 IP
  4. gr8webseller

    gr8webseller Peon

    Messages:
    1,097
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #4
    what are the data fetching techniques ??? give some ??
     
    gr8webseller, Aug 15, 2011 IP
  5. Technoslab

    Technoslab Peon

    Messages:
    46
    Likes Received:
    3
    Best Answers:
    3
    Trophy Points:
    0
    #5
    You can create your own data fetching mechanism using PHP. For that, you'll have to play a bit with cURL and preg functions.

    cURL is used for pulling the whole content of a remote page and preg function help in extracting a particular piece of text.

    Here's a rough idea.

    
    $text = get_via_curl("http://some-url.com/some-android-app-page.htm");
    $app_version = get_app_version_via_preg($text);
    
    Code (markup):
    Of course, you would need to learn and them create your own get_via_curl() and get_app_version...() function. :p

    If cURL is not available on your server, file_get_contents() with stream_context_create() would come in handy.

    If official API is available for pulling data, just go for it.
     
    Technoslab, Aug 16, 2011 IP
  6. nihangshah

    nihangshah Prominent Member

    Messages:
    5,536
    Likes Received:
    271
    Best Answers:
    3
    Trophy Points:
    395
    #6
    Is it possible to make money selling Android apps via API?
     
    nihangshah, Aug 16, 2011 IP
  7. Technoslab

    Technoslab Peon

    Messages:
    46
    Likes Received:
    3
    Best Answers:
    3
    Trophy Points:
    0
    #7
    Why not ? depends on the quality of app and how famous it grows.
     
    Technoslab, Aug 16, 2011 IP