작성
·
133
답변 2
0
0
안녕하세요
섹션0 강의소개에
전체소스코드에서 다운받아서 사용하시면 됩니다 아래 코드입니다.
import com.bokchi.sogating_final.message.fcm.Repo.Companion.CONTENT_TYPE
import com.bokchi.sogating_final.message.fcm.Repo.Companion.SERVER_KEY
import okhttp3.ResponseBody
import retrofit2.Response
import retrofit2.http.Body
import retrofit2.http.Headers
import retrofit2.http.POST
interface NotiAPI {
@Headers("Authorization: key=$SERVER_KEY", "Content-Type:$CONTENT_TYPE")
@POST("fcm/send")
suspend fun postNotification(@Body notification: PushNotification): Response<ResponseBody>
}