rilevazione utente

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Gio(vanni)

    rilevazione utente

    Salve,
    ho un problemino da sottoporre al gruppo.
    Ho la necessità di far "entrare" in una pagina di iscrizione di un
    sito un utente che proviene da un altro sito e che ha acquistato
    qualcosa. Le cose non indifferenti da tenere in considerazione sono
    queste:
    1) devo essere sicuro che ha acquistato qualcosa
    2) devo essere certo che non sia un "falso" acquirente o, peggio, il
    venditore che fa il furbetto
    Che cosa mi consigliate?
    Avete qualche idea in mente?
    Grazie 1000 in anticipo
    Gio(vanni)
  • Rik Wasmus

    #2
    Re: rilevazione utente

    On Fri, 09 May 2008 20:43:44 +0200, Gio(vanni) <giozua@gmail.c omwrote:
    Salve,
    ho un problemino da sottoporre al gruppo.
    Ho la necessità di far "entrare" in una pagina di iscrizione di un
    sito un utente che proviene da un altro sito e che ha acquistato
    qualcosa. Le cose non indifferenti da tenere in considerazione sono
    queste:
    1) devo essere sicuro che ha acquistato qualcosa
    2) devo essere certo che non sia un "falso" acquirente o, peggio, il
    venditore che fa il furbetto
    Che cosa mi consigliate?
    Avete qualche idea in mente?
    Grazie 1000 in anticipo
    [assuming I understood Italian]
    If you need a definite asssurance that the visitor has done some actions
    at another page, that site should direct the user with some unique (short
    lived) id that can be checked against their servers for compliance, with
    probably a HTTP request against their servers. or they should provide some
    crendentials that can be checked against that sever (with methods like
    fsockopen, curl, or numerous other depending on what that server wants.
    How to communicate with that site is the questions It could be simple GET
    string, POSTSs. or a full fledged XML conversation, or even more exotic
    manners.

    If you cannot communicate with the other site and validate your current
    user there, it's simply not possible to detect wether a user has done some
    required actions there or not in any reliable manner.
    [/assuming]
    --
    Rik Wasmus

    Comment

    Working...