2017-06-04 356 views
0

我正在使用SOAP接口作爲處理遺留系統上的數據的一種方式。我需要驗證使用此係統中的信息的用戶。我發現了以下作爲Laravel的部分(5,4)安裝使用SOAP進行laravel身份驗證

應用\設置\ auth.php

| All authentication drivers have a user provider. This defines how the 
| users are actually retrieved out of your database or other storage 
| mechanisms used by this application to persist your user's data. 

我製成SOAP的在Laravel工作演示(所以它從所需的表中獲取數據)。我使用了這個:https://github.com/artisaninweb/laravel-soap它似乎工作到目前爲止......

對於身份驗證系統,我需要在Laravel中進行哪些更改,以便它能夠識別從SOAP檢索的行而不是從DB中獲取的行? TIA

回答