- Katılım
 - 5 yıl 6 ay 7 gün
 
- Mesajlar
 - 889
 
-- Client'a istek göndermek eğer bir veri göndericekseniz response => {'veri'} şeklinde gönderebilirsiniz
	
	
	
	
	
		
-- Client'a istek gönderip response yani geri dönüş almak:
	
	
	
	
	
		
Client:
	
	
	
	
	
		
	
		
			
		
		
	
				
			
		Kod:
	
	axios.post('https://script-adi/Post', {}).then(response => {}).catch(error => {});
	-- Client'a istek gönderip response yani geri dönüş almak:
		Kod:
	
	axios.get("https://script-adi/Data").then(response => {response.data.veri}).finally(() => console.log("Finally işlem bittiği anlamına gelir."));
	Client:
		Kod:
	
	local test = {
    {id="successful"},
}
RegisterNUICallback("Data",function(data, cb)
        cb(
            {
              veri = test
            }
        )
    end
)
	
	
				



