微博设置 和 逻辑

微博设置 和 逻辑

  • 微博登录的回调地址, 回调地址的格式: http://主机头:端口/path/ => 不能带 #,

  • 我们现在的vue的路由: 127.0.0.1:8080/#/path

  • 我们把vue的路由模式改成history模式(现在是hash) => 127.0.0.1:8080/, 127.0.0.1:8080/register/, 127.0.0.1:8080/login/

  • 修改vue路由设置, 改成history

微博设置 和 逻辑_第1张图片

  • 修改文件引入路径, vue项目根目录下的index.html

  • 原来的地址是 http://127.0.0.1:8080/

  • http://127.0.0.1:8080/ static/scc/main.css => http://127.0.0.1:8080/static/scc/main.css ok

  • http://127.0.0.1:8080/oauth/callback/ static/scc/main.css =>

  • http://127.0.0.1:8080/oauth/callback/static/scc/main.css xxxx

  • http://127.0.0.1:8080/oauth/callback/ /static/scc/main.css => http://127.0.0.1:8080/static/scc/main.css ok

微博设置 和 逻辑_第2张图片

  • 微博登录

    • 申请微博开发者账号, 才能有访问微博接口的权限
    • 注册开发者账号: http://open.weibo.com/
    • 申请应用
      微博设置 和 逻辑_第3张图片
      微博设置 和 逻辑_第4张图片
      微博设置 和 逻辑_第5张图片
  • 高级设置
    微博设置 和 逻辑_第6张图片

  • 三方登录逻辑

    微博设置 和 逻辑_第7张图片

  • 实现三方登录

    • 绑定表(uid, user, c_time, u_time)

    微博设置 和 逻辑_第8张图片

你可能感兴趣的:(笔记,python,vue)