CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 2012
    Posts
    2

    Passing parameters without API access

    I had a quick question about passing parameters from one site to another - without an API / developer link with the third party website.

    Eg: In simplistic terms -> User inputs their requirements on Site A -> Site A then queries the database on Site B with the data required -> Pass this back to Site A and carry on the interaction.

    In real life -> User searches for tickets on Site A -> Site A asks this information from Site B (there is no existing relationship / API / datafeed of any sorts) -> Site B returns the availability of tickets to Site A -> User then selects the tickets, seats , show etc and then makes the payment to Site B based on the information collected from the user.

    I just want to know if this is achievable?

    To make matters worse -> Site B can (depending on the implementation) use SSL as well!

    Thanks in advance and Kind Regards,

  2. #2
    Join Date
    Jan 2006
    Location
    Singapore
    Posts
    6,765

    Re: Passing parameters without API access

    Have Site B provide an API that Site A will use

    If you are saying that such an API/datafeed is not possible, then what you are trying to do is impossible by definition: you cannot discover something for which there is no way to discover it.
    C + C++ Compiler: MinGW port of GCC
    Build + Version Control System: SCons + Bazaar

    Look up a C/C++ Reference and learn How To Ask Questions The Smart Way
    Kindly rate my posts if you found them useful

  3. #3
    Join Date
    Mar 2012
    Posts
    2

    Re: Passing parameters without API access

    Thanks Laserlight!

    More than not possible - we are talking more than 100 websites that need to provide an API - which in itself can be a challenge.

    Ahh!!! Well I did try

    Thanks once again.

  4. #4
    Join Date
    Jan 2006
    Location
    Singapore
    Posts
    6,765

    Re: Passing parameters without API access

    It is possible. It just takes time for negotiation and development, e.g., you need to convince each site owner that this service will bring more bookings and hence more revenue, then agree on technical details, then implement on both sides.
    C + C++ Compiler: MinGW port of GCC
    Build + Version Control System: SCons + Bazaar

    Look up a C/C++ Reference and learn How To Ask Questions The Smart Way
    Kindly rate my posts if you found them useful

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured