用户接口远程调用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
418 B

  1. package userrpc
  2. import (
  3. "testing"
  4. )
  5. func Test_BindThird(t *testing.T) {
  6. dbname := "test1_tetele_com"
  7. site_id := "1001"
  8. platform := "deliver_mini"
  9. user_id := "1"
  10. openid := "CasfoieFsdfsdfiDiodf_df"
  11. openname := "测试中"
  12. avatar := "https://ssss.ttt.ddd/sfsd"
  13. mobile := "1234456456"
  14. res, err := BindThird(site_id, dbname, platform, user_id, openid, openname, "", avatar, mobile)
  15. t.Log(res)
  16. t.Log(err)
  17. }