Password verification methods?

Discussion in 'Integration' started by saeven, Nov 23, 2007.

  1. saeven

    saeven New Member

    Joined:
    Nov 23, 2007
    Messages:
    4
    Hello aMember community,

    Not being an aMember-member myself, I haven't received any resources concerning any implementation portals that may be available to aMember. We do however, have precisely 8 aMember users of a less-technical bend, that have requested a formal integration.

    While it's very easy to query the database for user details, I was curious to know if there were any "official" password verification channels such as XMLRPC portals, or local php inclusions that could instead be performed. This would give the integration a better 'survivability' should there be schema changes on the aMember side of the fence.

    Look forward to your guidance!

    Thanks.
    Alex
  2. saeven

    saeven New Member

    Joined:
    Nov 23, 2007
    Messages:
    4
  3. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    Alex,
    You can do this through XMLRPC (/amember/xmlrpc/index.php)
    This interface support many important aMember database functions:
    'ping' => 'xmlrpc_ping',
    'query' => 'xmlrpc_query',
    'query_all' => 'xmlrpc_query_all',
    'query_one' => 'xmlrpc_query_one',
    'query_row' => 'xmlrpc_query_row',
    'query_first' => 'xmlrpc_query_first',
    'add_pending_user' => 'xmlrpc_add_pending_user',
    'get_user' => 'xmlrpc_get_user',
    'update_user' => 'xmlrpc_update_user',
    'delete_user' => 'xmlrpc_delete_user',
    'add_payment' => 'xmlrpc_add_payment',
    'get_user_payments' => 'xmlrpc_get_user_payments',
    'get_products_list' => 'xmlrpc_get_products_list',
    'calculate_expiration' => 'xmlrpc_calculate_expiration',
    'check_uniq_login' => 'xmlrpc_check_uniq_login',
    'check_remote_access' => 'xmlrpc_check_remote_access',
    'check_login' => 'xmlrpc_check_login',
  4. saeven

    saeven New Member

    Joined:
    Nov 23, 2007
    Messages:
    4
    Thanks, we've completed a login sharing module with our helpdesk, that equally cross-populates customer record data from aMember to the helpdesk itself. I think we may work to have the helpdesk screen access based on aMember subscription status as well.

    Cheers!
    Alex

Share This Page